Tramway SDK
error.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_RENDER_ERROR_H
4#define TRAM_SDK_RENDER_ERROR_H
5
6#include <render/vertices.h>
7
8namespace tram::Render {
9
10uint8_t* MakeNewErrorTexture(vec3 color, vec3 color2);
11
12StaticModelData* MakeNewErrorModel();
13
14}
15
16#endif // TRAM_SDK_RENDER_ERROR_H
High-level Render system API.
Definition: gui.h:8
uint8_t * MakeNewErrorTexture(vec3 color1, vec3 color2)
Generates a new error texture.
Definition: error.cpp:9
StaticModelData * MakeNewErrorModel()
Generates a new error model.
Definition: error.cpp:34
glm::vec3 vec3
Definition: math.h:11