blob: c39edfe04e0673138594ed1c062bf884cbb9f618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "AbstractContainerScreen.h"
class Player;
class Button;
class InventoryScreen : public AbstractContainerScreen
{
public:
InventoryScreen(shared_ptr<Player> player);
virtual void init();
protected:
virtual void renderLabels();
private:
float xMouse, yMouse;
public:
virtual void render(int xm, int ym, float a);
protected:
virtual void renderBg(float a);
virtual void buttonClicked(Button *button);
};
|