view EXCLUDE/GLTSF/include/Window_Listener.hpp @ 4731:bfc8ad7234b6

Adding some initial TSF code
author dewyatt
date Thu, 27 May 2010 20:47:52 -0400
parents 6032ada8b9e5
children 0c7c67d4e6ee
line wrap: on
line source

#ifndef WINDOW_LISTENER_HPP
#define WINDOW_LISTENER_HPP

class Window_Listener
{
public:
	virtual void On_Close(){}

	virtual void On_Key_Down(int Key){}
	virtual void On_Key_Up(int Key){}
};

#endif