diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-10 17:24:57 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-10 17:24:57 -0700 |
commit | d067d7da8e6ee333a4941d4fe6ee9eb926d37f00 (patch) | |
tree | 03374aa436a0f2e1f3ba7cca250f260a5b4d60d3 /src/being.h | |
parent | 00d8f57800042a324795b30dd35b21d67d47a2aa (diff) | |
download | mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.tar.gz mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.tar.bz2 mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.tar.xz mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.zip |
Added two more options for displaying speech overhead (don't show it at
all and show speech bubbles without names). Since a checkbox won't work
any more for all of these modes, it's now a slider.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h index ef02eeb2..1d39e726 100644 --- a/src/being.h +++ b/src/being.h @@ -113,6 +113,15 @@ class Being : public Sprite NUM_TC }; + enum Speech + { + NO_SPEECH = 0, + TEXT_OVERHEAD, + NO_NAME_IN_BUBBLE, + NAME_IN_BUBBLE, + NUM_SPEECH + }; + /** * Directions, to be used as bitmask values */ |