Files
salmanoff/hcore/include/mentalEntity.h
T

15 lines
151 B
C++
Raw Normal View History

2024-09-08 01:04:41 +10:00
#ifndef _MENTAL_ENTITY_H
#define _MENTAL_ENTITY_H
2025-01-04 11:32:37 -04:00
namespace hk {
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-01-04 11:32:37 -04:00
} // namespace hk
2024-09-08 01:04:41 +10:00
#endif