aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/shape.h
blob: 1fdf1c4f9f5637828345b29dea4949be5d9d20db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef YAGE_RENDER_SHAPE_H
#define YAGE_RENDER_SHAPE_H

#include "drawable.h"

namespace yage
{

class Shape : public Drawable
{
public:
    virtual void render() const;
};

} // namespace yage

#endif