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

#include "system.h"

class PonderingSystem : public System {
public:

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

  void tick(double dt);
};

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