Changeset 10413 for code/branches/core7/src/orxonox/overlays
- Timestamp:
- May 2, 2015, 11:20:45 PM (10 years ago)
- Location:
- code/branches/core7/src/orxonox/overlays
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/orxonox/overlays/InGameConsole.cc
r10407 r10413 67 67 ManageScopedSingleton(InGameConsole, ScopeID::Graphics, false); 68 68 69 RegisterAbstractClass(InGameConsole).inheritsFrom<WindowEventListener>() ;69 RegisterAbstractClass(InGameConsole).inheritsFrom<WindowEventListener>().inheritsFrom<UpdateListener>(); 70 70 71 71 /** -
code/branches/core7/src/orxonox/overlays/InGameConsole.h
r8858 r10413 39 39 #include "core/WindowEventListener.h" 40 40 #include "core/command/Shell.h" 41 #include "core/UpdateListener.h" 41 42 42 43 namespace orxonox 43 44 { 44 class _OrxonoxExport InGameConsole : public Singleton<InGameConsole>, public ShellListener, public WindowEventListener 45 class _OrxonoxExport InGameConsole : public Singleton<InGameConsole>, public ShellListener, public WindowEventListener, public UpdateListener 45 46 { 46 47 friend class Singleton<InGameConsole>; … … 53 54 54 55 void preUpdate(const Clock& time); 56 void postUpdate(const Clock& time) { /*no action*/ } 55 57 56 58 static void openConsole();
Note: See TracChangeset
for help on using the changeset viewer.