• Fichier: Chest.h
  • Path: /dungeon_ascii/DungeonASCII/Chest.h
  • File size: 280 bytes
  • MIME-type: text/x-c++
  • Charset: utf-8
 
Retour
#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