summaryrefslogtreecommitdiff
path: root/include/functions.h
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2017-12-09 12:31:13 +0300
committerOxore <oxore@protonmail.com>2017-12-09 12:31:13 +0300
commita9574591d86e9ac727da4ad6f6295725f3b2a3a2 (patch)
tree5c188d29fcf7a1a0e6d738ab21a1a761a550ec61 /include/functions.h
parent6ee4bf59b927c31cf9ba7b340d1b03d598b2a527 (diff)
Implement NES Tetris scoring system
Diffstat (limited to 'include/functions.h')
-rw-r--r--include/functions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/functions.h b/include/functions.h
index b307a31..f47f816 100644
--- a/include/functions.h
+++ b/include/functions.h
@@ -12,6 +12,7 @@ void resetActiveShape(Shape *active);
void putShape();
int outOfFieldCheck(Field *fld, Shape *active);
void checkLevelUp(Game *game);
+int getMoveLatencyOfLevel(int level);
int cellCollisionCheckHere(Field *fld, Shape *active);
int cellCollisionCheck(int dir);
int wallCollisionCheck();