summary refs log tree commit diff stats
path: root/src/party.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-02 20:18:41 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-02 20:18:41 -0500
commitc772a3e5d8d9507b898813cdfb597c14b07cdc61 (patch)
treed2b79410a30f55b2c8d10b6b4b564cdb40467a95 /src/party.h
parent93b3e4004387047c25b2f5a190aced01c9091934 (diff)
downloadtanetane-c772a3e5d8d9507b898813cdfb597c14b07cdc61.tar.gz
tanetane-c772a3e5d8d9507b898813cdfb597c14b07cdc61.tar.bz2
tanetane-c772a3e5d8d9507b898813cdfb597c14b07cdc61.zip
Added "bumping into something while running" sfx
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