summary refs log tree commit diff stats
path: root/src/system.h
blob: 85415f09d4604016f7f9e7658f228354d5b6ce31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SYSTEM_H_B61A8CEA
#define SYSTEM_H_B61A8CEA

class EntityManager;

class System {
  public:
    virtual void tick(EntityManager& manager, float dt) = 0;
};

#endif /* end of include guard: SYSTEM_H_B61A8CEA */