Changeset 8079 for code/trunk/src/orxonox/ChatInputHandler.h
- Timestamp:
- Mar 15, 2011, 9:47:11 PM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/ChatInputHandler.h
r7163 r8079 30 30 #define _ChatInputHandler_H__ 31 31 32 /* std includes */ 33 #include <deque> 32 #include <OrxonoxPrereqs.h> 33 34 34 #include <string> 35 #include <fstream>36 #include <iostream>37 #include <cassert>38 35 #include <CEGUIForwardRefs.h> 36 #include <CEGUIcolour.h> 39 37 40 /* project includes */ 41 #include <OrxonoxPrereqs.h> 42 #include <core/BaseObject.h> 43 #include <core/PathConfig.h> 44 45 #include "core/input/InputBuffer.h" 46 #include "core/input/InputManager.h" 47 #include "core/input/InputState.h" 48 49 #include <network/ChatListener.h> 50 #include <PlayerManager.h> 51 #include <infos/PlayerInfo.h> 52 53 #include "../libraries/network/Host.h" 54 #include <util/Singleton.h> 38 #include "util/Singleton.h" 39 #include "network/ChatListener.h" 55 40 56 41 namespace orxonox // tolua_export … … 70 55 /* colors for nickname coloring */ 71 56 static const int NumberOfColors = 10; 72 CEGUI::colour *text_colors[ NumberOfColors ];57 CEGUI::colour text_colors[ NumberOfColors ]; 73 58 74 59 /** input state */ … … 110 95 /** constructor */ 111 96 ChatInputHandler(); 97 ~ChatInputHandler(); 112 98 friend class Singleton<ChatInputHandler>; 113 99
Note: See TracChangeset
for help on using the changeset viewer.