The-Powder-Toy/src/Platform.h
jacob1 9048a3c50e new lua API: platform
you can get current OS / build information, exe name, restart tpt, open a link in the web browser, and use clipboard copy/paste functions

Also remove some older Platform.h file which wasn't really needed or used
2015-08-31 23:33:40 -04:00

18 lines
228 B
C++

#ifndef PLATFORM_H
#define PLATFORM_H
#include <string>
namespace Platform
{
char * ExecutableName();
void DoRestart();
void OpenURI(std::string uri);
void Millisleep(long int t);
long unsigned int GetTime();
}
#endif