git-svn-id: http://mc-server.googlecode.com/svn/trunk@902 0a769ca7-a7f5-676a-18bf-c427514a06d6
14 lines
227 B
C++
14 lines
227 B
C++
#pragma once
|
|
#include "BlockHandler.h"
|
|
#include "BlockEntity.h"
|
|
|
|
class cBlockNoteHandler : public cBlockEntityHandler
|
|
{
|
|
public:
|
|
cBlockNoteHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockEntityHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
};
|