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