summary refs log tree commit diff stats
path: root/src/systems/orienting.h
blob: 4ded6125553b9155121d34229d6e8c7468e093fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef ORIENTING_H_099F0C23
#define ORIENTING_H_099F0C23

#include "system.h"

class OrientingSystem : public System {
public:

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

  void tick(double dt);

  void moveLeft(id_type entity);

  void moveRight(id_type entity);

  void stopWalking(id_type entity);

  void jump(id_type entity);

  void stopJumping(id_type entity);

  void land(id_type entity);

  void startFalling(id_type entity);

  void drop(id_type entity);

  void stopDropping(id_type entity);

};

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