blob: c03d7820177356838c2444d77584fd0b47f567e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace Impostor.Api.Events.Player
{
public interface IPlayerSetStartCounterEvent : IPlayerEvent
{
/// <summary>
/// Gets the current time of the start counter.
/// </summary>
byte SecondsLeft { get; }
}
}
|