The-Powder-Toy/src/client/ClientListener.h
2012-07-17 19:14:05 +01:00

24 lines
380 B
C++

/*
* ClientListener.h
*
* Created on: Jun 19, 2012
* Author: Simon
*/
#ifndef CLIENTLISTENER_H_
#define CLIENTLISTENER_H_
class Client;
class ClientListener
{
public:
ClientListener() {}
virtual ~ClientListener() {}
virtual void NotifyUpdateAvailable(Client * sender) {}
virtual void NotifyAuthUserChanged(Client * sender) {}
};
#endif /* CLIENTLISTENER_H_ */