Move project in sub
This commit is contained in:
parent
f868166756
commit
ec1af1b8e5
43 changed files with 358 additions and 2 deletions
14
sea_transport/entities/IEntity.h
Normal file
14
sea_transport/entities/IEntity.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue