blob: 832e83be52274dc8bdbe71366ecf447981ba44b5 (
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
|
//
// StructProperty.h
// The Powder Toy
//
// Created by Simon Robertshaw on 04/06/2012.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#ifndef The_Powder_Toy_StructProperty_h
#define The_Powder_Toy_StructProperty_h
#include <string>
struct StructProperty
{
enum PropertyType { ParticleType, Colour, Integer, UInteger, Float, String };
std::string Name;
PropertyType Type;
intptr_t Offset;
StructProperty(std::string name, PropertyType type, intptr_t offset):
Name(name),
Type(type),
Offset(offset)
{
}
};
#endif
|