summary refs log tree commit diff stats
path: root/src/systems/pondering.h
blob: ad01a2229fc017eedd948fb5f649bdd36e83bacb (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 */