Skip to content

Commit

Permalink
hee
Browse files Browse the repository at this point in the history
  • Loading branch information
101itsGabe committed Oct 2, 2023
1 parent 3e72b27 commit 0b89207
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
Binary file modified main.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ endif


#Source Files
SRC_FILES = main.cpp src/menu.cpp src/gameManager.cpp src/tile.cpp src/player.cpp src/tileManager.cpp src/playerManager.cpp
SRC_FILES = main.cpp src/menu.cpp src/gameManager.cpp src/tile.cpp src/player.cpp src/tileManager.cpp src/playerManager.cpp src/aiPlayer.cpp
EXECUTABLE = main

#Platform Exclusivities
Expand Down
1 change: 1 addition & 0 deletions src/aiPlayer.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "aiPlayer.h"
10 changes: 10 additions & 0 deletions src/aiPlayer.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef AI_PLAYER_H
#define AI_PLAYER_H

#include <player.h>

class AiOpponent : public Player
{
};

#endif

0 comments on commit 0b89207

Please sign in to comment.