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