blob: e5a6ca8e3711bae6ff5e5b7c154c7189c6927f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#include "Screen.h"
class ClientConnection;
class ReceivingLevelScreen : public Screen
{
private:
ClientConnection *connection;
int tickCount;
public:
ReceivingLevelScreen(ClientConnection *connection);
protected:
using Screen::keyPressed;
virtual void keyPressed(char eventCharacter, int eventKey);
public:
virtual void init();
virtual void tick();
protected:
virtual void buttonClicked(Button *button);
public:
virtual void render(int xm, int ym, float a);
};
|