Tramway SDK
image.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_PLATFORM_IMAGE_H
4#define TRAM_SDK_PLATFORM_IMAGE_H
5
6namespace tram::Platform {
7
8void SaveImageToDisk(const char* name, int w, int h, const char* image);
9
10}
11
12#endif // TRAM_SDK_PLATFORM_FILE_H
void SaveImageToDisk(const char *name, int w, int h, const char *image)
Saves image to disk.
Definition: image.cpp:12