mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
25 lines
368 B
C++
25 lines
368 B
C++
#ifndef ENTITY_SPAWN_INFO_H
|
|
#define ENTITY_SPAWN_INFO_H
|
|
|
|
#include "../entities/entity.h"
|
|
#include "core/reference.h"
|
|
|
|
class EntitySpawnInfo : public Reference {
|
|
GDCLASS(EntitySpawnInfo, Reference);
|
|
|
|
public:
|
|
|
|
CharacterSpawnInfo();
|
|
~CharacterSpawnInfo();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
private:
|
|
int _class_id;
|
|
int _race;
|
|
int _visual_set_id;
|
|
};
|
|
|
|
#endif
|