Mercurial > sdl-ios-xcode
diff EXCLUDE/GLTSF/include/Window_Listener.hpp @ 4737:0e18c79c4111
Renamed Window::Update to Window::Handle_Events.
Removed Window::Clear.
Added Window::Show_Cursor/Hide_Cursor.
Added On_Resized event.
author | dewyatt |
---|---|
date | Sat, 12 Jun 2010 03:19:43 -0400 |
parents | 0c7c67d4e6ee |
children |
line wrap: on
line diff
--- a/EXCLUDE/GLTSF/include/Window_Listener.hpp Fri Jun 11 18:32:18 2010 -0400 +++ b/EXCLUDE/GLTSF/include/Window_Listener.hpp Sat Jun 12 03:19:43 2010 -0400 @@ -5,10 +5,10 @@ { public: virtual void On_Close(){} - virtual void On_Key_Down(int Key){} virtual void On_Key_Up(int Key){} virtual void On_Char(unsigned int Char){} + virtual void On_Resized(unsigned int Width, unsigned int Height){} }; #endif