Files
tbd-station-14/Content.Shared/Voting/StandardVoteType.cs
2021-11-11 23:25:57 -07:00

24 lines
550 B
C#

namespace Content.Shared.Voting
{
/// <summary>
/// Standard vote types that players can initiate themselves from the escape menu.
/// </summary>
public enum StandardVoteType : byte
{
/// <summary>
/// Vote to restart the round.
/// </summary>
Restart,
/// <summary>
/// Vote to change the game preset for next round.
/// </summary>
Preset,
/// <summary>
/// Vote to change the map for the next round.
/// </summary>
Map
}
}