Files
tbd-station-14/Content.Shared/Arcade/BlockGamePlayerAction.cs
2021-07-16 17:37:09 -07:00

25 lines
436 B
C#

using System;
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
}
}