Renamed Window::Update to Window::Handle_Events.

Removed Window::Clear.
Added Window::Show_Cursor/Hide_Cursor.
Added On_Resized event.
This commit is contained in:
dewyatt 2010-06-12 03:19:43 -04:00
parent fca96b4c82
commit f5b3329281
3 changed files with 16 additions and 6 deletions

View file

@ -24,10 +24,11 @@ public:
void Show();
void Hide();
void Update();
void Handle_Events();
void Display();
void Clear();
void Show_Cursor();
void Hide_Cursor();
private:
static const wchar_t *Window_Class_Name;