view EXCLUDE/GLTSF/include/Window_Listener.hpp @ 4730:6032ada8b9e5

Adding GLTSF (somewhat based on SFML, no actual TSF code yet)
author dewyatt
date Tue, 25 May 2010 18:53:09 -0400
parents
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