Tramway SDK
image.h
Go to the documentation of this file.
1// TRAMWAY DRIFT AND DUNGEON EXPLORATION SIMULATOR 2022
2// All rights reserved.
3
4#ifndef TRAM_SDK_PLATFORM_IMAGE_H
5#define TRAM_SDK_PLATFORM_IMAGE_H
6
7namespace tram::Platform {
8
9void SaveImageToDisk(const char* name, int w, int h, const char* image);
10
11}
12
13#endif // TRAM_SDK_PLATFORM_FILE_H
Definition: api.h:9
void SaveImageToDisk(const char *name, int w, int h, const char *image)
Definition: image.cpp:8