Entities improvement

This commit is contained in:
Andrew nuark G 2020-12-15 21:44:41 +07:00
parent 19f223b474
commit 76ac624519
11 changed files with 39 additions and 27 deletions

View file

@ -4,9 +4,11 @@
#include "ISerializable.h"
typedef unsigned long long entity_id;
class IEntity : public ISerializable {
public:
virtual unsigned long long id() = 0;
virtual entity_id id() = 0;
};
#endif // IENTITY_H