The-Powder-Toy/src/Platform.h
mniip ff27d69424 Switch from std::string to String/ByteString in most of the code
Also switch SimulationData from weird arrays to std::vector
2018-04-30 21:13:24 +03:00

18 lines
240 B
C++

#ifndef PLATFORM_H
#define PLATFORM_H
#include "common/String.h"
namespace Platform
{
ByteString ExecutableName();
void DoRestart();
void OpenURI(ByteString uri);
void Millisleep(long int t);
long unsigned int GetTime();
}
#endif