Grail (C++)  1.4.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
DataSerializationVersions.h
1 // Copyright QED Software 2023.
2 
3 #ifndef GRAIL_DATA_SERIALIZATION_VERSIONS_H
4 #define GRAIL_DATA_SERIALIZATION_VERSIONS_H
5 
6 namespace grail
7 {
8 namespace data
9 {
15  namespace data_serialization_versions
16  {
17  constexpr const int CONFIG_SERIALIZATION_VERSION = 1;
18  constexpr const int DEBUG_SERIALIZATION_VERSION = 1;
19  }
20 }
21 }
22 
23 #endif