11 lines
181 B
C#
11 lines
181 B
C#
using UnityEngine;
|
|
|
|
namespace Darkmatter.Core
|
|
{
|
|
public interface IGameSession
|
|
{
|
|
bool showStartScreen { get; set; }
|
|
bool hasGameStarted { get; set; }
|
|
}
|
|
}
|