aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/system.h
blob: b540555f620c0d26825991e76c868cd1a89af9e7 (plain)
1
2
3
4
5
6
7
8
9
10
class BaseSystem
{
public:
    virtual void update() = 0;
};

template <typename T>
class System : public BaseSystem
{
};