Skip to content

Commit

Permalink
PacManGame
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauz013 committed Oct 11, 2020
0 parents commit 39aefff
Show file tree
Hide file tree
Showing 25 changed files with 4,525 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Software Development II - Course Project
14 changes: 14 additions & 0 deletions game-source-code/Datatypes.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#ifndef DATATYPES_H
#define DATATYPES_H

enum IDENTITY{Pac, Blue, Red, Orange, Pink};
enum DIRECTION{Left, Right, Up, Down};
enum TEXTURE {Wall, Key, Power, Super, blank, Lock, BreakLock, Food};
struct Coordinates
{
int x;
int y;
};


#endif // DATATYPES_H
Loading

0 comments on commit 39aefff

Please sign in to comment.