summaryrefslogtreecommitdiff
path: root/Week1-Pacman/src/facing.h
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2025-01-15 18:12:03 +0300
committerBoredGuy <osome3717@gmail.com>2025-01-15 18:12:03 +0300
commit6a6f7be378bee10679e9e1ea61a70b00b4731589 (patch)
tree8017237147d72e455d6479734579df39eefd2853 /Week1-Pacman/src/facing.h
parent5f7e0d8cf88d0adb9739e2cc7e26ba26243975f8 (diff)
Scuffed Resource SystemHEADmaster
I am super proud of this one TBH
Diffstat (limited to 'Week1-Pacman/src/facing.h')
-rw-r--r--Week1-Pacman/src/facing.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Week1-Pacman/src/facing.h b/Week1-Pacman/src/facing.h
new file mode 100644
index 0000000..fb772fa
--- /dev/null
+++ b/Week1-Pacman/src/facing.h
@@ -0,0 +1,11 @@
+#ifndef FACING_H_
+#define FACING_H_
+
+enum facing {
+ FACING_RIGHT,
+ FACING_DOWN,
+ FACING_LEFT,
+ FACING_UP
+};
+
+#endif // FACING_H_