Changeset 1263 for code/branches/merge/src/orxonox/console
- Timestamp:
- May 13, 2008, 3:45:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/merge/src/orxonox/console/InGameConsole.cc
r1223 r1263 54 54 const float BLINK = 0.25; 55 55 56 InGameConsole::InGameConsole(InputBuffer* ib){ 56 InGameConsole::InGameConsole(InputBuffer* ib) : 57 windowW(0), windowH(0), 58 scroll(0), scrollTimer(0.0f), 59 cursor(0.0f), 60 active(false), 61 ib_(ib), 62 om(0), 63 consoleOverlay(0), 64 consoleOverlayContainer(0), 65 consoleOverlayNoise(0), 66 consoleOverlayBorder(0), 67 consoleOverlayTextAreas(0) 68 { 57 69 //RegisterObject(InGameConsole); 58 ib_ = ib;59 active = false;60 cursor = 0.0;61 70 init(); 62 71 }
Note: See TracChangeset
for help on using the changeset viewer.