mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
Forgot network user menu header file
This commit is contained in:
parent
a5618a93d7
commit
5ae81fc5bf
32
Src/gui/network_user_menu.hh
Normal file
32
Src/gui/network_user_menu.hh
Normal file
@ -0,0 +1,32 @@
|
||||
#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(SDL_Event *ev);
|
||||
|
||||
void setPeers(NetworkUpdateListPeers *peerList);
|
||||
|
||||
void draw(SDL_Surface *where);
|
||||
|
||||
protected:
|
||||
NetworkUserMenu *menu;
|
||||
PeerInfoBox *peerInfo;
|
||||
};
|
||||
|
||||
#endif /* NETWORK_USER_MENU_HH */
|
||||
|
Loading…
Reference in New Issue
Block a user