Ver Fonte

Add a method to set the 'MainDotCsDir' when no main.cs is available

Lukas Joergensen há 7 anos atrás
pai
commit
13eb392c98
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      Engine/source/platform/platformFileIO.cpp

+ 5 - 0
Engine/source/platform/platformFileIO.cpp

@@ -620,3 +620,8 @@ DefineEngineFunction( getUserHomeDirectory, const char *, (), , "getUserHomeDire
 {
    return Platform::getUserHomeDirectory();
 }
+
+DefineEngineFunction(setMainDotCsDir, void, (const char* path), , "setMainDotCsDir()")
+{
+   Platform::setMainDotCsDir(StringTable->insert(path));
+}