From 6a6f7be378bee10679e9e1ea61a70b00b4731589 Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Wed, 15 Jan 2025 18:12:03 +0300 Subject: Scuffed Resource System I am super proud of this one TBH --- Week1-Pacman/src/facing.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Week1-Pacman/src/facing.h (limited to 'Week1-Pacman/src/facing.h') 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_ -- cgit v1.2.3