mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
16 lines
225 B
C
16 lines
225 B
C
#ifndef __FIELDNAMES__
|
|
#define __FIELDNAMES__
|
|
|
|
#include "SerializedTypes.h"
|
|
#include "SerializedObject.h"
|
|
|
|
struct FieldName
|
|
{
|
|
SOE_Field field;
|
|
const char *fieldName;
|
|
SerializedTypeID fieldType;
|
|
int fieldValue;
|
|
};
|
|
|
|
#endif
|