generated from Persson-dev/Godot-Xmake
24 lines
385 B
C++
24 lines
385 B
C++
#ifndef GDEXAMPLE_H
|
|
#define GDEXAMPLE_H
|
|
|
|
#include <godot_cpp/classes/sprite2d.hpp>
|
|
|
|
namespace godot
|
|
{
|
|
class GDExample : public Sprite2D
|
|
{
|
|
GDCLASS(GDExample, Sprite2D)
|
|
private:
|
|
double time_passed;
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
GDExample();
|
|
~GDExample();
|
|
|
|
void _process(float delta);
|
|
};
|
|
}
|
|
#endif |