initial commit

This commit is contained in:
2025-02-25 12:07:16 +01:00
commit 0657bc9b25
34 changed files with 3069 additions and 0 deletions

18
src/Core/Action.h Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
/**
* The list of actions that can be taken by the player
*/
enum Action {
PAUSE,
RETRY,
HOLD,
SOFT_DROP,
HARD_DROP,
MOVE_LEFT,
MOVE_RIGHT,
ROTATE_CW,
ROTATE_180,
ROTATE_CCW
};