Last change
on this file since 900 was
740,
checked in by sam, 10 years ago
|
monsterz: create a Score class to display the score text and increment it
progressively.
|
-
Property svn:keywords set to
Id
|
File size:
813 bytes
|
Line | |
---|
1 | // |
---|
2 | // Monsterz |
---|
3 | // |
---|
4 | // Copyright: (c) 2005-2011 Sam Hocevar <sam@hocevar.net> |
---|
5 | // This program is free software; you can redistribute it and/or |
---|
6 | // modify it under the terms of the Do What The Fuck You Want To |
---|
7 | // Public License, Version 2, as published by Sam Hocevar. See |
---|
8 | // http://sam.zoy.org/projects/COPYING.WTFPL for more details. |
---|
9 | // |
---|
10 | |
---|
11 | // |
---|
12 | // The Score class |
---|
13 | // --------------- |
---|
14 | // |
---|
15 | |
---|
16 | #if !defined __MONSTERZ_SCORE_H__ |
---|
17 | #define __MONSTERZ_SCORE_H__ |
---|
18 | |
---|
19 | #include "monsterz.h" |
---|
20 | |
---|
21 | class ScoreData; |
---|
22 | |
---|
23 | class Score : public Text |
---|
24 | { |
---|
25 | public: |
---|
26 | Score(int score); |
---|
27 | virtual ~Score(); |
---|
28 | |
---|
29 | char const *GetName() { return "<score>"; } |
---|
30 | |
---|
31 | void Add(int points); |
---|
32 | |
---|
33 | protected: |
---|
34 | virtual void TickGame(float deltams); |
---|
35 | virtual void TickDraw(float deltams); |
---|
36 | |
---|
37 | private: |
---|
38 | ScoreData *data; |
---|
39 | }; |
---|
40 | |
---|
41 | #endif // __MONSTERZ_SCORE_H__ |
---|
42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.