This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/client/ClientListener.h
2012-08-12 15:15:47 +01:00

25 lines
436 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) {}
virtual void NotifyMessageOfTheDay(Client * sender) {}
};
#endif /* CLIENTLISTENER_H_ */