cultivation/Assets/Scripts/Common/TestGameLauncher.cs

18 lines
336 B
C#

namespace Common
{
public class TestGameLauncher : GameLauncher
{
protected override string ResolveLifetimeScopePrefab()
{
return "TestScope";
}
protected override void CreateResourcesList()
{
}
protected override void Launch()
{
}
}
}