Grail (C++)  1.4.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
consts.h
1 // Copyright QED Software 2023.
2 
3 #ifndef GRAIL_CONSTS_H
4 #define GRAIL_CONSTS_H
5 #include <string>
6 
7 namespace grail
8 {
9  namespace consts
10  {
11  constexpr const std::size_t MAX_STRING_SIZE = 15; //DO NOT CHANGE THIS VALUE!!!
12  }
13 }
14 #endif //GRAIL_CONSTS_H