blob: 5998bf24942bf61fe3d81871d4fd402abfde43b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Impostor.Api.Events
{
/// <summary>
/// Called when the game is going to start.
/// When this is called, not all players are initialized properly yet.
/// If you want to get correct player states, use <see cref="IGameStartedEvent"/>.
/// </summary>
public interface IGameStartingEvent : IGameEvent
{
}
}
|