Tramway SDK
design.h
Go to the documentation of this file.
1// TRAMWAY DRIFT AND DUNGEON EXPLORATION SIMULATOR 2022
2// All rights reserved.
3
4// This extension basically contains a bunch of random reusable game mechanics.
5// They could be used to implement a FPS-type or an RPG-type game.
6
7#ifndef TRAM_SDK_EXTENSIONS_DESIGN_DESIGN_H
8#define TRAM_SDK_EXTENSIONS_DESIGN_DESIGN_H
9
10
11
12namespace tram::Ext::Design {
13 void Init();
14 void Update();
15}
16
17#endif // TRAM_SDK_EXTENSIONS_DESIGN_DESIGN_H
Definition: character.h:10
void Init()
Definition: design.cpp:14
void Update()
Definition: design.cpp:27