Tramway SDK
error.h
Go to the documentation of this file.
1//clTabCtrl TRAMWAY DRIFT AND DUNGEON EXPLORATION SIMULATOR 2022
2// All rights reserved.
3
4#ifndef TRAM_SDK_RENDER_ERROR_H
5#define TRAM_SDK_RENDER_ERROR_H
6
7#include <render/vertices.h>
8
9namespace tram::Render {
10
11uint8_t* MakeNewErrorTexture(vec3 color, vec3 color2);
12
13StaticModelData* MakeNewErrorModel();
14
15}
16
17#endif // TRAM_SDK_RENDER_ERROR_H
Definition: gui.h:9
uint8_t * MakeNewErrorTexture(vec3 color1, vec3 color2)
Generates a new error texture.
Definition: error.cpp:7
StaticModelData * MakeNewErrorModel()
Generates a new error model.
Definition: error.cpp:32
glm::vec3 vec3
Definition: math.h:12