forked from MicroTransactionsMatterToo/LOK-SR_Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EVENT.h
41 lines (33 loc) · 747 Bytes
/
EVENT.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
// Copyrgith Ennis Massey 4/04/17
//
// Created by Ennis Massey on 4/04/17.
//
#ifndef KAINRECONSTRUCTION_EVENT_H
#define KAINRECONSTRUCTION_EVENT_H
#include "SCRIPT.h"
typedef struct EventBasicObject {
short id;
} EventBasicObject;
typedef struct Event {
short eventNumber;
short numInstances;
unsigned char numActions;
unsigned char processingPuppetShow;
void* eventVariables[];
EventBasicObject instanceList;
ScriptPCode conditionalList;
ScriptPCode actionList;
} Event;
typedef struct EventPointers {
long numPuzzles;
Event* eventInstances[];
};
struct __Event {
int ID;
int Data;
};
typedef struct __MessageQueue {
int Head;
int Tail;
};
#endif //KAINRECONSTRUCTION_EVENT_H