blob: ddea96b4516f8a0d980d1b799a6042f1f0049647 (
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
|
//
// 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
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
|