Files
2025-12-16 18:12:45 -08:00

11 lines
181 B
C#

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