Grail (C++)  1.4.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
EntityModel.h
1 // Copyright QED Software 2023.
2 
3 #ifndef GRAIL_ENTITY_MODEL_H
4 #define GRAIL_ENTITY_MODEL_H
5 
6 #include <string>
7 
8 namespace grail
9 {
10 namespace data
11 {
12  struct EntityModel
13  {
14  std::string id{};
15  std::string reasonerId{};
16  };
17 }
18 }
19 
20 #endif
grail::data::EntityModel
Definition: EntityModel.h:12