#ifndef DRAWABLE_HPP #define DRAWABLE_HPP class iDrawable { public: virtual void draw() = 0; virtual ~iDrawable() {} }; #endif