x86UNIXPlatform.cpp 339 B

123456789101112
  1. #include "platform/platform.h"
  2. bool Platform::openWebBrowser( const char* webAddress )
  3. {
  4. return false; // TODO LINUX
  5. }
  6. #ifdef TORQUE_DEDICATED
  7. // XA: New class for the unix unicode font
  8. class PlatformFont;
  9. PlatformFont *createPlatformFont(const char *name, dsize_t size, U32 charset /* = TGE_ANSI_CHARSET */) { return NULL; }
  10. #endif