Files
salmanoff/smocore/include/mentalEntity.h
T

15 lines
153 B
C++
Raw Normal View History

2024-09-08 01:04:41 +10:00
#ifndef _MENTAL_ENTITY_H
#define _MENTAL_ENTITY_H
2025-07-22 06:48:04 -04:00
namespace smo {
2025-01-04 11:32:37 -04:00
2024-09-08 01:04:41 +10:00
class MentalEntity
{
2025-01-04 07:33:15 -04:00
public:
using Id = uint32_t;
2024-09-08 01:04:41 +10:00
};
2025-07-22 06:48:04 -04:00
} // namespace smo
2025-01-04 11:32:37 -04:00
2024-09-08 01:04:41 +10:00
#endif