2012-08-18 05:56:28 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cInventory.h"
|
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cCreativeInventory
|
2012-06-14 09:06:06 -04:00
|
|
|
: public cInventory
|
2012-08-18 05:56:28 -04:00
|
|
|
{
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2012-08-18 05:56:28 -04:00
|
|
|
cCreativeInventory(cPlayer * a_Owner);
|
2012-06-14 09:06:06 -04:00
|
|
|
~cCreativeInventory();
|
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
virtual void Clicked(short a_SlotNum, bool a_IsRightClick, bool a_IsShiftPressed, const cItem & a_HeldItem) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|