#ifndef YAGE_CORE_DRAWABLE_H #define YAGE_CORE_DRAWABLE_H namespace yage { class Drawable { public: virtual void render() const; }; } // namespace yage #endif