summaryrefslogtreecommitdiffstats
path: root/src/defs.h
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2021-08-01 23:44:27 (EDT)
committer P. J. McDermott <pj@pehjota.net>2021-08-01 23:45:22 (EDT)
commiteb0084ef69a05f8d5c93a4d2d5a500c11f558543 (patch)
tree9d13ea114bb88759e21a8010f1e0a7b00586cc48 /src/defs.h
parent6238e82905f0778af12c95364971062bc4776d1c (diff)
downloadmazefight-eb0084ef69a05f8d5c93a4d2d5a500c11f558543.zip
mazefight-eb0084ef69a05f8d5c93a4d2d5a500c11f558543.tar.gz
mazefight-eb0084ef69a05f8d5c93a4d2d5a500c11f558543.tar.bz2
main: Implement
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
new file mode 100644
index 0000000..7fa89b4
--- /dev/null
+++ b/src/defs.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2021 P. J. McDermott
+ *
+ * This file is part of Maze Fight
+ *
+ * Maze Fight is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Maze Fight is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Maze Fight. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MF_DEFS_H_
+#define MF_DEFS_H_
+
+#define MF_WINDOW_W 640 /* Window width */
+#define MF_WINDOW_H 480 /* Window height */
+
+#endif /* MF_DEFS_H_ */