summary refs log tree commit diff stats
path: root/src/party.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/party.h')
-rw-r--r--src/party.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/party.h b/src/party.h index 2864073..59330c8 100644 --- a/src/party.h +++ b/src/party.h
@@ -5,12 +5,14 @@
5#include <vector> 5#include <vector>
6#include "game.h" 6#include "game.h"
7 7
8class Mixer;
9
8class Party { 10class Party {
9public: 11public:
10 12
11 void addMember(Game& game, int spriteId); 13 void addMember(Game& game, int spriteId);
12 14
13 void move(Game& game, const Input& keystate); 15 void move(Game& game, Mixer& mixer, const Input& keystate);
14 16
15 void beginCrouch(Game& game); 17 void beginCrouch(Game& game);
16 18