Nanotrasen Block Game is here (#2131)

* tetris!

* softdropping & left,right key holding

* started work on the ui

* playable state

* there you go exp

* multiuser rework

* ui update refactor

* blockgame™️

* highscores, keybindings, ui refactor

* speed adjusts
leveling

* highscorebackground tweak
speed tweak

* NULLABLE

* yes
This commit is contained in:
Paul Ritter
2020-09-26 15:25:22 +02:00
committed by GitHub
parent 4eb5891c4a
commit 84ce845ea3
14 changed files with 2013 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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
}
}