blob: ef08bbe448390691482c227c1a5e970ec48eee7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#pragma once
#include "cBlockEntity.h"
class cWindow;
/**
Implements the base behavior expected from a class that can handle UI windows for block entities.
*/
class cWindowOwner
{
public:
cWindowOwner() : m_Window( NULL ) {}
void CloseWindow() { m_Window = NULL; }
void OpenWindow( cWindow* a_Window ) { m_Window = a_Window; }
cWindow* GetWindow() { return m_Window; }
void SetEntity(cBlockEntity * a_Entity) { m_Entity = a_Entity; }
void GetBlockPos(int & a_BlockX, int & a_BlockY, int & a_BlockZ)
{
a_BlockX = m_Entity->GetPosX();
a_BlockY = m_Entity->GetPosY();
a_BlockZ = m_Entity->GetPosZ();
}
private:
cWindow * m_Window;
cBlockEntity * m_Entity;
};
|