8f79074c42
git-svn-id: http://mc-server.googlecode.com/svn/trunk@735 0a769ca7-a7f5-676a-18bf-c427514a06d6
39 lines
628 B
C++
39 lines
628 B
C++
|
|
#pragma once
|
|
|
|
#include "cWindow.h"
|
|
|
|
|
|
|
|
|
|
// fwd:
|
|
class cWindowOwner;
|
|
|
|
|
|
|
|
|
|
|
|
class cCraftingWindow : public cWindow
|
|
{
|
|
public:
|
|
enum
|
|
{
|
|
SLOT_CRAFTING_RESULT = 0,
|
|
SLOT_CRAFTING_MIN = 1,
|
|
SLOT_CRAFTING_MAX = 9,
|
|
} ;
|
|
|
|
cCraftingWindow(cWindowOwner * a_Owner, bool a_bInventoryVisible);
|
|
|
|
virtual void Clicked(cPacket_WindowClick * a_ClickPacket, cPlayer & a_Player);
|
|
virtual void Close(cPlayer & a_Player);
|
|
|
|
void ShiftClicked(cPacket_WindowClick * a_ClickPacket, cPlayer & a_Player);
|
|
void ShiftClickedCraftingResult(short a_Slot, cPlayer & a_Player);
|
|
void ShiftClickedCraftingGrid (short a_Slot, cPlayer & a_Player);
|
|
};
|
|
|
|
|
|
|
|
|