Expose GameTitle, WindowIconSet and SplashLogo to content (#5475)

* Expose GameTitle to public

Requirement for upstream ss14 pr

* Missing method implemented

* Add windowiconset and splashlogo (I think this is what pjb meant?)

I don't think its worth it to add the other stuff (modules, assemblyprefix, autocnnect, clientassemblies)

* Docs
This commit is contained in:
Vasilis
2024-10-01 12:05:44 +02:00
committed by GitHub
parent ea02260230
commit b4beca6562
4 changed files with 49 additions and 6 deletions

View File

@@ -66,5 +66,20 @@ namespace Robust.UnitTesting
public void OverrideMainLoop(IGameLoop gameLoop)
{
}
public string GameTitle()
{
return "RobustToolbox";
}
public string WindowIconSet()
{
return "";
}
public string SplashLogo()
{
return "";
}
}
}