Tramway SDK
other.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_PLATFORM_OTHER_H
4#define TRAM_SDK_PLATFORM_OTHER_H
5
6namespace tram::Platform {
7
8void TryDebugging();
9void ShowErrorDialog(const char*, const char* = nullptr);
10
11}
12
13#endif // TRAM_SDK_PLATFORM_OTHER_H
void ShowErrorDialog(const char *message, const char *title)
Definition: other.cpp:28
void TryDebugging()
Attempts to break into debugger.
Definition: other.cpp:17