-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItems.hpp
More file actions
28 lines (22 loc) · 860 Bytes
/
Items.hpp
File metadata and controls
28 lines (22 loc) · 860 Bytes
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
/*******************************************************************************
* ** Author: Gavin Slusher
* ** Date: 6/2/2019
* ** Description: Items class specification file. Contains logic to define
* the objects that will be put in the "map" (2D array) of any
* space class or subclass. Has methods and a constuctor
* to define an object icon, description, and whether or not
* the object is solid, an item, or interactable.
* ** *************************************************************************/
#include <string>
#include "displayMenu.hpp"
#include "inputValidation.hpp"
#include "MapObjects.hpp"
#ifndef ITEMS_HPP
#define ITEMS_HPP
class Item: public MapObjects
{
protected:
public:
Item(std::string);
};
#endif