Changeset 10624 for code/trunk/src/orxonox/chat/ChatInputHandler.cc
- Timestamp:
- Oct 4, 2015, 9:12:21 PM (10 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/orxonox/chat/ChatInputHandler.cc
r9675 r10624 47 47 #endif 48 48 49 #include " util/ScopedSingletonManager.h"49 #include "core/singleton/ScopedSingletonIncludes.h" 50 50 #include "core/CoreIncludes.h" 51 51 #include "core/GUIManager.h" 52 #include "core/command/ConsoleCommand .h"52 #include "core/command/ConsoleCommandIncludes.h" 53 53 #include "core/input/InputBuffer.h" 54 54 #include "core/input/InputManager.h" … … 62 62 { 63 63 /* singleton */ 64 ManageScopedSingleton( ChatInputHandler, ScopeID::G raphics, false );64 ManageScopedSingleton( ChatInputHandler, ScopeID::GRAPHICS, false ); 65 65 66 66 /* add commands to console */ 67 67 SetConsoleCommand( "startchat", &ChatInputHandler::activate_static ); 68 68 SetConsoleCommand( "startchat_small", &ChatInputHandler::activate_small_static ); 69 70 RegisterAbstractClass(ChatInputHandler).inheritsFrom<ChatListener>(); 69 71 70 72 /* constructor */
Note: See TracChangeset
for help on using the changeset viewer.