Grail (C++)  1.4.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
DataValidators.h
1 // Copyright QED Software 2023.
2 
3 #ifndef GRAIL_DATA_VALIDATORS_H
4 #define GRAIL_DATA_VALIDATORS_H
5 
6 #include <set>
7 #include "GrailConfiguration.h"
8 
9 namespace grail
10 {
11 namespace data
12 {
20  bool Validate(const GrailConfiguration& configuration, std::vector<std::string>& errorMessages);
21 }
22 }
23 
24 #endif