summaryrefslogblamecommitdiffstats
path: root/src/BlockEntities/EnderChestEntity.h
blob: 17abd880a4ccdc16dab7d5ff3511673b318750f9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


            

                           




 

                         

                                      
 
                                   
        
       

                    

                                                
                                                                                      

                                     
                                  
                                                         



                                                                                    
        
                                                                





                                 

#pragma once

#include "BlockEntity.h"
#include "UI/WindowOwner.h"





// tolua_begin
class cEnderChestEntity :
	public cBlockEntity,
	public cBlockEntityWindowOwner
{
	typedef cBlockEntity super;
	
public:
	// tolua_end
	
	BLOCKENTITY_PROTODEF(cEnderChestEntity);
	
	cEnderChestEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
	virtual ~cEnderChestEntity();

	// cBlockEntity overrides:
	virtual void UsedBy(cPlayer * a_Player) override;
	virtual void SendTo(cClientHandle & a_Client) override { UNUSED(a_Client); }

	static void LoadFromJson(const Json::Value & a_Value, cItemGrid & a_Grid);
	static void SaveToJson(Json::Value & a_Value, const cItemGrid & a_Grid);
	
	/** Opens a new enderchest window for this enderchest */
	void OpenNewWindow(void);
} ;  // tolua_export