diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-12 17:49:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-12 17:49:41 +0300 |
commit | 261b8ab980d442d0cf1b06df244388d65f431301 (patch) | |
tree | 9b703ac5b2c3d48aeab4728aa4eb8d704780442c /src/being/beingspeech.h | |
parent | 707a1570df9146c42411afb6dd7b2e9bc11b0251 (diff) | |
download | plus-261b8ab980d442d0cf1b06df244388d65f431301.tar.gz plus-261b8ab980d442d0cf1b06df244388d65f431301.tar.bz2 plus-261b8ab980d442d0cf1b06df244388d65f431301.tar.xz plus-261b8ab980d442d0cf1b06df244388d65f431301.zip |
Move beingspeech into separate file.
Diffstat (limited to 'src/being/beingspeech.h')
-rw-r--r-- | src/being/beingspeech.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/being/beingspeech.h b/src/being/beingspeech.h new file mode 100644 index 000000000..7deb2ebdf --- /dev/null +++ b/src/being/beingspeech.h @@ -0,0 +1,37 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef BEING_BEINGSPEECH_H +#define BEING_BEINGSPEECH_H + +namespace BeingSpeech +{ + enum + { + NO_SPEECH = 0, + TEXT_OVERHEAD, + NO_NAME_IN_BUBBLE, + NAME_IN_BUBBLE + }; +} // BeingSpeech + +#endif // BEING_BEINGSPEECH_H |