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

#include "system.h"
#include <sol.hpp>

class AutomatingSystem : public System {
public:

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

  void tick(double dt);

  void initPrototype(id_type prototype);

  void initScriptEngine(sol::state& scriptEngine);

};

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