using Player.Services; using UnityEngine; using VContainer; namespace Common { public class TestGameLauncher : GameLauncher { protected override string ResolveLifetimeScopePrefab() { return "TestScope"; } protected override void CreateResourcesList() { } protected override void Launch() { var spawner = lifetimeScope.Container.Resolve(); spawner.Spawn(Vector3.zero); } } }