diff options
| author | Daniel Weipert <git@mail.dweipert.de> | 2026-03-21 11:23:59 +0100 |
|---|---|---|
| committer | Daniel Weipert <git@mail.dweipert.de> | 2026-03-21 11:23:59 +0100 |
| commit | 271f1db35e1654d0e25e2025c86d46ba401d288e (patch) | |
| tree | 3ea40d061254d2a7745b941ef309fc71fc4a06d7 /tetromino_s.gd | |
Diffstat (limited to 'tetromino_s.gd')
| -rw-r--r-- | tetromino_s.gd | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tetromino_s.gd b/tetromino_s.gd new file mode 100644 index 0000000..5123e0a --- /dev/null +++ b/tetromino_s.gd @@ -0,0 +1,8 @@ +@tool +extends Tetromino + + +func get_default_segment_positions() -> Array[Vector2i]: + return [ + Vector2i(-1, 0), Vector2i(0, -1), Vector2i(1, -1), + ] |
