1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 05:53:54 +00:00
openmw/apps/opencs/model/world/defaultgmsts.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
836 B
C++
Raw Normal View History

2016-01-18 02:55:03 +00:00
#ifndef CSM_WORLD_DEFAULTGMSTS_H
#define CSM_WORLD_DEFAULTGMSTS_H
#include <cstddef>
namespace CSMWorld
{
namespace DefaultGmsts
{
2022-09-22 18:26:05 +00:00
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[];
extern const char* Ints[];
extern const char* Strings[];
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
extern const char* OptionalFloats[];
extern const char* OptionalInts[];
extern const char* OptionalStrings[];
extern const float FloatsDefaultValues[];
extern const int IntsDefaultValues[];
extern const float FloatLimits[];
extern const int IntLimits[];
}
}
#endif