-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdriver.hpp
50 lines (37 loc) · 1014 Bytes
/
driver.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**********************************************
File name: Driver Functions.
Author: Howard Chen
Last Modified: 3-20-2017
Description: Collection of test functions for the classes
in the final project of CS 162.
**********************************************/
#ifndef HC_DRIVER_HPP
#define HC_DRIVER_HPP
#include "Object.hpp"
#include "Holdable.hpp"
#include "Usable.hpp"
#include "Goal.hpp"
#include "Permanent.hpp"
#include "BPMenu.hpp"
#include "RoomMenu.hpp"
#include "Backpack.hpp"
#include "Player.hpp"
#include "Room.hpp"
#include "GoalRoom.hpp"
#include "ResourceRoom.hpp"
#include "InteractRoom.hpp"
#include <iostream>
#include <functional>
struct driver{
//test the object classes.
static void objectTest();
//test the menu classes.
static void menuTest();
//test the backpack class.
static void backpackTest();
//test the player class.
static void playerTest();
//tes the room classes.
static void roomTest();
};
#endif