diff --git a/Commands.h b/Commands.h new file mode 100644 index 0000000..3374399 --- /dev/null +++ b/Commands.h @@ -0,0 +1,29 @@ +#ifndef COMMANDS_H +#define COMMANDS_H + + +#include +#include + +using namespace std; + +enum Commands { + OPEN, + GO, + TAKE, + LEAVE, + CRAFT, + LOOK, + CHECK, + EAT, + INVENTORY, + PUT, + HELP, + NONE, + END, + QUIT +}; + + + +#endif