blob: b6e511148c673c763225183560e7b501cb7e4feb (
plain)
1
2
3
4
5
6
7
8
9
|
namespace Impostor.Api.Events
{
/// <summary>
/// The game is started here and players have been initialized.
/// </summary>
public interface IGameStartedEvent : IGameEvent
{
}
}
|