diff options
author | Oxore <oxore@protonmail.com> | 2017-12-09 12:31:13 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2017-12-09 12:31:13 +0300 |
commit | a9574591d86e9ac727da4ad6f6295725f3b2a3a2 (patch) | |
tree | 5c188d29fcf7a1a0e6d738ab21a1a761a550ec61 /include/common.h | |
parent | 6ee4bf59b927c31cf9ba7b340d1b03d598b2a527 (diff) |
Implement NES Tetris scoring system
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 9e1a847..773cb3f 100644 --- a/include/common.h +++ b/include/common.h @@ -50,6 +50,7 @@ typedef struct Game { int isStarted; int scoreCurrent; int level; + int moveLatency; int lines; } Game; |