mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 20:54:46 +00:00
13 lines
339 B
C++
13 lines
339 B
C++
#include "platform/platform.h"
|
|
|
|
bool Platform::openWebBrowser( const char* webAddress )
|
|
{
|
|
return false; // TODO LINUX
|
|
}
|
|
|
|
#ifdef TORQUE_DEDICATED
|
|
// XA: New class for the unix unicode font
|
|
class PlatformFont;
|
|
PlatformFont *createPlatformFont(const char *name, dsize_t size, U32 charset /* = TGE_ANSI_CHARSET */) { return NULL; }
|
|
#endif
|