summary refs log tree commit diff stats
path: root/src/systems/pondering.h
blob: 3fe5473cb5193cc7865d62661fa2b267e4a73c5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 */