Files
tbd-station-14/Content.Shared/Arcade/BlockGamePlayerAction.cs
2022-05-13 17:59:03 +10:00

24 lines
422 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Arcade
{
[Serializable, NetSerializable]
public enum BlockGamePlayerAction
{
NewGame,
StartLeft,
EndLeft,
StartRight,
EndRight,
Rotate,
CounterRotate,
SoftdropStart,
SoftdropEnd,
Harddrop,
Pause,
Unpause,
Hold,
ShowHighscores
}
}