This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
SymbolEngine__archived_repo.../Source/gdexample.h
Ed94 96dad8a849 following tut, bs happend.
gdnative decided to hardcode the directories of is includes to godot_cpp for the directory of the fucking git repo.
2022-05-12 08:18:55 -04:00

29 lines
380 B
C++

#pragma once
#include <Godot.hpp>
#include <Sprite.hpp>
namespace godot {
class GDExample : public Sprite
{
GODOT_CLASS(GDExample, Sprite)
public:
#pragma region Data
float time_passed;
#pragma endregion Data
#pragma region GodotRT
static void _register_methods();
void _init();
void _process(float delta);
#pragma endregion GodotRT
GDExample();
~GDExample();
};
}