summaryrefslogblamecommitdiffstats
path: root/source/DispenserEntity.h
blob: 9d788128ff2773ad321d5a33dd1edc3649681928 (plain) (tree)
1
2
3
4
5
6
7
8
9


             
                               




 
               
                         
                                  
  
                                          
         
        







                                                                                      

                                                                                
 
         

                                                                 
                     



 

#pragma once

#include "DropSpenserEntity.h"





// tolua_begin
class cDispenserEntity :
	public cDropSpenserEntity
{
	typedef cDropSpenserEntity super;
	
public:

	/// Constructor used while generating a chunk; sets m_World to NULL
	cDispenserEntity(int a_BlockX, int a_BlockY, int a_BlockZ);
	
	// tolua_end
	
	/// Constructor used for normal operation
	cDispenserEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);

	static const char * GetClassStatic(void) { return "cDispenserEntity"; }

private:
	// cDropSpenser overrides:
	virtual void DropSpenseFromSlot(int a_SlotNum) override;
} ;  // tolua_export