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

namespace yage
{

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

} // namespace yage

#endif