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

#include "drawable.h"

namespace yage
{

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

} // namespace yage

#endif