summary refs log tree commit diff stats
path: root/src/components/playable.h
blob: a6e71b0bf82580f72fcdf3fdaa34c5d4a6c3b90b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PLAYABLE_H_DDC566C3
#define PLAYABLE_H_DDC566C3

#include "component.h"

class PlayableComponent : public Component {
public:

  bool changingMap = false;
  int newMapId = -1;
  double newMapX = 0;
  double newMapY = 0;
};

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