Tramway SDK
template.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_COMPONENTS_TEMPLATECOMPONENT_H
4#define TRAM_SDK_COMPONENTS_TEMPLATECOMPONENT_H
5
7
8namespace tram {
9
11public:
14 void Init();
15 void Start();
16 void EventHandler(Event &event);
17};
18
19}
20
21#endif // TRAM_SDK_COMPONENTS_TEMPLATECOMPONENT_H
Component base class.
Definition: entitycomponent.h:16
Definition: template.h:10
void Init()
Initializes an entity component.
void EventHandler(Event &event)
Serialization, i.e.
Event data.
Definition: event.h:24