-
Notifications
You must be signed in to change notification settings - Fork 1
/
Data.h
41 lines (34 loc) · 862 Bytes
/
Data.h
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
32
33
34
35
36
37
38
39
40
41
class rRundata;
typedef rRundata * LPRRDATA;
// --------------------------------
// RUNNING OBJECT DATA STRUCTURE
// --------------------------------
// If you want to store anything between actions/conditions/expressions
// you should store it here
typedef struct tagRDATA
{
#include "MagicRDATA.h"
int boxWidth;
int boxHeight;
int startX;
int startY;
int tileWidth;
int tileHeight;
int currentX[100];
int currentY[100];
int lastX;
int lastY;
} RUNDATA;
typedef RUNDATA * LPRDATA;
// --------------------------------
// EDITION OF OBJECT DATA STRUCTURE
// --------------------------------
// These values let you store data in your extension that will be saved in the MFA
// You should use these with properties
typedef struct tagEDATA_V1
{
extHeader eHeader;
// short swidth;
// short sheight;
} EDITDATA;
typedef EDITDATA * LPEDATA;