using UnityEngine; namespace Darkmatter.Core { public interface IGameSession { bool showStartScreen { get; set; } bool hasGameStarted { get; set; } } }