Add live_textures_reload command

This commit is contained in:
Eduardo Bart
2013-03-01 05:46:55 -03:00
parent e85afd4b63
commit 8314b84f69
15 changed files with 93 additions and 31 deletions

View File

@@ -25,6 +25,7 @@
#include <string>
#include <vector>
#include <framework/stdext/types.h>
class Platform
{
@@ -39,11 +40,11 @@ public:
bool copyFile(std::string from, std::string to);
bool fileExists(std::string file);
bool removeFile(std::string file);
ticks_t getFileModificationTime(std::string file);
void openUrl(std::string url);
std::string getCPUName();
double getTotalSystemMemory();
std::string getOSName();
time_t getFileModificationTime(const std::string& filename);
};
extern Platform g_platform;