blob: dda72c4eb804c4703d61449e49321d75a8707a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef STRUCTPROPERTY_H_
#define STRUCTPROPERTY_H_
#include <string>
#include <stdint.h>
struct StructProperty
{
enum PropertyType { ParticleType, Colour, Integer, UInteger, Float, String, Char, UChar };
std::string Name;
PropertyType Type;
intptr_t Offset;
StructProperty(std::string name, PropertyType type, intptr_t offset):
Name(name),
Type(type),
Offset(offset)
{
}
StructProperty():
Name(""),
Type(Char),
Offset(0)
{
}
};
#endif
|