#ifndef _INTERACTABLE_CLASS_H_INCLUDED
#define _INTERACTABLE_CLASS_H_INCLUDED
#include "Vector2.h"
class Interactable
{
private:
Vector2 m_coordinates;
public:
Interactable(int, int);
Vector2 getCoordinates();
virtual void interact() = 0;
~Interactable();
};
#endif