6ad8553a3a
http://forum.mc-server.org/showthread.php?tid=528 git-svn-id: http://mc-server.googlecode.com/svn/trunk@793 0a769ca7-a7f5-676a-18bf-c427514a06d6
14 lines
220 B
C++
14 lines
220 B
C++
#pragma once
|
|
#include "Block.h"
|
|
#include "BlockEntity.h"
|
|
|
|
class cBlockNoteHandler : public cBlockEntityHandler
|
|
{
|
|
public:
|
|
cBlockNoteHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockEntityHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
};
|