-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDuel.h
38 lines (28 loc) · 759 Bytes
/
Duel.h
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
36
37
38
/*******************************************************************************
CommanderTux
Penguin In Space
Released under the GNU Public License
2005 by André Schnabel ([email protected])
*******************************************************************************/
// Duel.h
#ifndef DUEL_H
#define DUEL_H
#include "State.h"
#include "Level.h"
class CDuel : public CState
{
public:
CDuel();
virtual ~CDuel();
virtual void Input();
virtual void Update();
virtual void Draw();
private:
CLevel *m_level;
SReleased m_released[MAX_PLAYERS];
int m_scroll_x, m_scroll_y;
#ifndef NO_SOUND
Mix_Music *m_music;
#endif
};
#endif