First commit
This commit is contained in:
24
src/gdexample.h
Normal file
24
src/gdexample.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user