This repository has been archived on 2024-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SymbolEngine__archived_repo…/Source/gdlibrary.h
2022-05-12 10:30:48 -04:00

27 lines
466 B
C

#pragma once
#include "gdexample.h"
#define gd_export(Type_) \
extern "C" Type_ GDN_Export
gd_export(void)
godot_gdnative_init(godot_gdnative_init_options* o)
{
godot::Godot::gdnative_init(o);
}
gd_export(void)
godot_gdnative_terminate(godot_gdnative_terminate_options* o)
{
godot:Godot::gdnative_terminate(o);
}
gd_export(void)
godot_nativescript_init(void* handle)
{
godot::Godot::nativescript_init(handle);
godot::register_class<godot::GDExample>();
}