summaryrefslogtreecommitdiff
path: root/src/textparticle.h
diff options
context:
space:
mode:
authorMajin Sniper <majinsniper@gmx.de>2009-02-20 00:19:52 +0100
committerIra Rice <irarice@gmail.com>2009-02-20 08:35:25 -0700
commitb2eb8daa8c39bcfd5fbd3a76dbbc432b43c561a9 (patch)
treeb7583428f7462c5a6711dfa7d92b43076ea8f29b /src/textparticle.h
parent00bbc2186302fe4365f08903a209e03bb8feb4c5 (diff)
downloadMana-b2eb8daa8c39bcfd5fbd3a76dbbc432b43c561a9.tar.gz
Mana-b2eb8daa8c39bcfd5fbd3a76dbbc432b43c561a9.tar.bz2
Mana-b2eb8daa8c39bcfd5fbd3a76dbbc432b43c561a9.tar.xz
Mana-b2eb8daa8c39bcfd5fbd3a76dbbc432b43c561a9.zip
Added a pickup notification as particle effect. Also make a ui option to enable/disable this effect (default is off) and another option to disable the pickup notification in the chat log (default is on).
Diffstat (limited to 'src/textparticle.h')
-rw-r--r--src/textparticle.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/textparticle.h b/src/textparticle.h
index d847eb00..26b92a50 100644
--- a/src/textparticle.h
+++ b/src/textparticle.h
@@ -34,7 +34,7 @@ class TextParticle : public Particle
*/
TextParticle(Map *map, const std::string &text,
int colorR, int colorG, int colorB,
- gcn::Font *font);
+ gcn::Font *font, bool outline = false);
/**
* Draws the particle image.
@@ -49,6 +49,8 @@ class TextParticle : public Particle
std::string mText; /**< Text of the particle. */
gcn::Font *mTextFont; /**< Font used for drawing the text. */
int mColorR, mColorG, mColorB; /**< Color used for drawing the text. */
+ bool mOutline; /**< Make the text readable - draw it the way
+ a Text is usually drawn: with outline */
};
#endif