mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
25 lines
393 B
C++
25 lines
393 B
C++
|
#ifndef NETWORK_SERVER_MESSAGES_HH
|
||
|
#define NETWORK_SERVER_MESSAGES_HH
|
||
|
|
||
|
#include <SDL.h>
|
||
|
|
||
|
#include "status_bar.hh"
|
||
|
|
||
|
class NetworkServerMessages : public StatusBar
|
||
|
{
|
||
|
public:
|
||
|
NetworkServerMessages();
|
||
|
|
||
|
~NetworkServerMessages();
|
||
|
|
||
|
virtual void draw(SDL_Surface *where);
|
||
|
|
||
|
protected:
|
||
|
virtual void timeoutCallback();
|
||
|
|
||
|
private:
|
||
|
char *flowed_messages[8];
|
||
|
};
|
||
|
|
||
|
#endif /* NETWORK_SERVER_MESSAGES_HH */
|