2016-01-18 02:55:03 +00:00
|
|
|
#ifndef CSM_WORLD_DEFAULTGMSTS_H
|
|
|
|
#define CSM_WORLD_DEFAULTGMSTS_H
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
namespace CSMWorld
|
|
|
|
{
|
|
|
|
namespace DefaultGmsts
|
|
|
|
{
|
|
|
|
|
2016-01-18 02:55:03 +00:00
|
|
|
const size_t FloatCount = 258;
|
|
|
|
const size_t IntCount = 89;
|
|
|
|
const size_t StringCount = 1174;
|
2022-09-22 18:26:05 +00:00
|
|
|
|
2016-01-18 02:55:03 +00:00
|
|
|
const size_t OptionalFloatCount = 42;
|
|
|
|
const size_t OptionalIntCount = 4;
|
|
|
|
const size_t OptionalStringCount = 26;
|
2022-09-22 18:26:05 +00:00
|
|
|
|
2016-01-18 02:55:03 +00:00
|
|
|
extern const char* Floats[];
|
2022-09-22 18:26:05 +00:00
|
|
|
extern const char* Ints[];
|
|
|
|
extern const char* Strings[];
|
|
|
|
|
|
|
|
extern const char* OptionalFloats[];
|
|
|
|
extern const char* OptionalInts[];
|
|
|
|
extern const char* OptionalStrings[];
|
2016-01-18 02:55:03 +00:00
|
|
|
|
|
|
|
extern const float FloatsDefaultValues[];
|
|
|
|
extern const int IntsDefaultValues[];
|
|
|
|
|
|
|
|
extern const float FloatLimits[];
|
|
|
|
extern const int IntLimits[];
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|