mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 12:26:59 +01:00
24 lines
341 B
C++
24 lines
341 B
C++
#ifndef PROP_2D_ESS_ENTITY_H
|
|
#define PROP_2D_ESS_ENTITY_H
|
|
|
|
|
|
#include "scene/main/spatial.h"
|
|
|
|
#include "core/math/vector3.h"
|
|
|
|
class Prop2DESSEntity : public Spatial {
|
|
GDCLASS(Prop2DESSEntity, Spatial);
|
|
OBJ_CATEGORY("Prop2Ds");
|
|
|
|
public:
|
|
Prop2DESSEntity();
|
|
~Prop2DESSEntity();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|