#ifndef YAGE_RENDER_RECTANGLE_H #define YAGE_RENDER_RECTANGLE_H #include "shape.h" namespace yage { class Rectangle { virtual void render() const; }; } // namespace yage #endif