#ifndef _CHEST_CLASS_H_INCLUDED
#define _CHEST_CLASS_H_INCLUDED
#include <iostream>
#include "Interactable.h"
class Chest: public Interactable
{
private:
short *m_gameState;
public:
Chest(int, int, short*);
virtual void interact();
~Chest();
};
#endif