summaryrefslogtreecommitdiffstats
path: root/src/board.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-21 17:04:41 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-21 17:04:41 (EDT)
commit63591cff3055b3dcf27f2ba3a45bf41cb97a0284 (patch)
tree1c9aa63abd5211d422ba3b38ca18732d3958f075 /src/board.h
parent3899cf43dd7bde078711b7817b10e753288f2498 (diff)
downloadcursespong-63591cff3055b3dcf27f2ba3a45bf41cb97a0284.zip
cursespong-63591cff3055b3dcf27f2ba3a45bf41cb97a0284.tar.gz
cursespong-63591cff3055b3dcf27f2ba3a45bf41cb97a0284.tar.bz2
Make board dimensions more easily changeable.
Diffstat (limited to 'src/board.h')
-rw-r--r--src/board.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/board.h b/src/board.h
new file mode 100644
index 0000000..406560d
--- /dev/null
+++ b/src/board.h
@@ -0,0 +1,7 @@
+#ifndef BOARD_H
+#define BOARD_H
+
+static const int BOARD_WIDTH = 80;
+static const int BOARD_HEIGHT = 25;
+
+#endif