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

enum class SystemKey {
  Transform,
  Input,
  Character,
  Animation,
  Camera,
  Message,
  Script
};

class System {
public:

  virtual void tick(double dt) {}

  virtual void destroySprite(int spriteId) {}

  virtual void clearSpriteCache() {}
};

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