(C++)  1.0.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
BlackboardState.h
1 #ifndef GRAIL_BLACKBOARD_STATE_H
2 #define GRAIL_BLACKBOARD_STATE_H
3 
4 #include <string>
5 #include <map>
6 
7 namespace grail
8 {
10  {
11  std::string name{};
12  std::map<std::string, std::string> data{};
13  };
14 }
15 
16 #endif
Definition: BlackboardState.h:10