mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
33 lines
479 B
C++
33 lines
479 B
C++
#ifndef NETWORK_USER_MENU_HH
|
|
#define NETWORK_USER_MENU_HH
|
|
|
|
#include <SDL.h>
|
|
#include <Network.h>
|
|
|
|
class GuiView;
|
|
class NetworkUserMenu;
|
|
class PeerInfoBox;
|
|
|
|
class NetworkUserView : public GuiView
|
|
{
|
|
public:
|
|
NetworkUserView();
|
|
|
|
~NetworkUserView();
|
|
|
|
void runLogic();
|
|
|
|
void pushEvent(event_t ev);
|
|
|
|
void setPeers(NetworkUpdateListPeers *peerList);
|
|
|
|
void draw(SDL_Surface *where);
|
|
|
|
protected:
|
|
NetworkUserMenu *menu;
|
|
PeerInfoBox *peerInfo;
|
|
};
|
|
|
|
#endif /* NETWORK_USER_MENU_HH */
|
|
|