diff options
author | aiju <devnull@localhost> | 2018-03-10 14:40:34 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2018-03-10 14:40:34 +0000 |
commit | 7ca11774a1a78dcfa520f35a60d6ce34c2dc724a (patch) | |
tree | b62491e6e6ecc7005edb21d8e6ac0a0a1838e4b2 /sys/src/games/mines/fns.h | |
parent | b7d31909f6258a36d00cb2bc2ef08687d6817755 (diff) |
games/mines: build a better ghost trap
Diffstat (limited to 'sys/src/games/mines/fns.h')
-rw-r--r-- | sys/src/games/mines/fns.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/src/games/mines/fns.h b/sys/src/games/mines/fns.h index 6bd84b744..3c7816c95 100644 --- a/sys/src/games/mines/fns.h +++ b/sys/src/games/mines/fns.h @@ -2,5 +2,7 @@ void LeftClick(Point); void RightClick(Point); void DrawButton(int); void InitMineField(void); +void GhostInit(void); void GhostMode(void); -void GhostReset(void); +void GhostReset(int); +int GhostCheck(Point); |