sea_transport_project/entities/IEntity.h
2020-12-15 21:44:41 +07:00

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