git-svn-id: http://mc-server.googlecode.com/svn/trunk@994 0a769ca7-a7f5-676a-18bf-c427514a06d6
		
			
				
	
	
		
			44 lines
		
	
	
		
			674 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			674 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "BlockEntity.h"
 | 
						|
#include "Player.h"
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
namespace Json
 | 
						|
{
 | 
						|
	class Value;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
class cJukeboxEntity : 
 | 
						|
	public cBlockEntity
 | 
						|
{
 | 
						|
public:
 | 
						|
	cJukeboxEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
 | 
						|
	virtual ~cJukeboxEntity();
 | 
						|
 | 
						|
	bool LoadFromJson( const Json::Value& a_Value );
 | 
						|
	virtual void SaveToJson( Json::Value& a_Value ) override;
 | 
						|
 | 
						|
	int  GetRecord( void );
 | 
						|
	void SetRecord( int a_Record );
 | 
						|
	void PlayRecord( void );
 | 
						|
	void EjectRecord( void );
 | 
						|
	virtual void UsedBy( cPlayer * a_Player ) override;
 | 
						|
	virtual void SendTo(cClientHandle & a_Client) override { };
 | 
						|
 | 
						|
private:
 | 
						|
	int m_Record;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |