summary refs log tree commit diff stats
path: root/src/system.h
blob: c601bc74726de4174d3c0a6f2416d7469e97dfe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SYSTEM_H_6B40E1B9
#define SYSTEM_H_6B40E1B9

enum class SystemKey {
  Transform,
  Camera,
  Animation
};

class System {
public:

  virtual void tick(double dt) {}
};

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