sea_transport_project/sea_transport/entities/IEntity.h
2020-12-18 17:40:22 +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