14 lines
207 B
C++
14 lines
207 B
C++
#ifndef IENTITY_H
|
|
#define IENTITY_H
|
|
|
|
#include "ISerializable.h"
|
|
|
|
|
|
typedef unsigned long long entity_id;
|
|
|
|
class IEntity : public ISerializable {
|
|
public:
|
|
virtual entity_id id() = 0;
|
|
};
|
|
|
|
#endif // IENTITY_H
|