aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/rectangle.h
blob: 11df8a1818976be8d1920dd58f333f1cc7100d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef YAGE_RENDER_RECTANGLE_H
#define YAGE_RENDER_RECTANGLE_H

#include "shape.h"

namespace yage {

class Rectangle
{
    virtual void render() const;
};

} // namespace yage

#endif