summary refs log tree commit diff stats
path: root/src/systems/automating.h
blob: c78b7cfddcf85ff01ab96590568428a2170de7ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef AUTOMATING_H_E6E5D76E
#define AUTOMATING_H_E6E5D76E

#include "system.h"

class AutomatingSystem : public System {
public:

  AutomatingSystem(Game& game) : System(game)
  {
  }

  void tick(double dt);

  void initPrototype(id_type prototype);

};

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