aboutsummaryrefslogtreecommitdiff
path: root/src/gameCommon.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-02 21:20:23 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-02 21:20:23 -0600
commite6fb000c6874874d50d94eee4b1c8e889f6791f1 (patch)
treec8b402ed75a19684603573abb9a813ce8a525c24 /src/gameCommon.h
first commit
Diffstat (limited to 'src/gameCommon.h')
-rw-r--r--src/gameCommon.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gameCommon.h b/src/gameCommon.h
new file mode 100644
index 0000000..361cf23
--- /dev/null
+++ b/src/gameCommon.h
@@ -0,0 +1,17 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <string.h>
+#include <math.h>
+#include <time.h>
+#include <ctype.h>
+#include <stdbool.h>
+
+#include <raylib.h>
+#include <raymath.h>
+#include "raylib.h"
+
+#ifndef GAME_COMMON_H
+#define GAME_COMMON_H
+
+#endif