summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockNote.h
blob: fef38d8453bbc27c736e7b38a2f74be1d65b311b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include "BlockHandler.h"
#include "BlockEntity.h"

class cBlockNoteHandler :  public cBlockEntityHandler
{
public:
	cBlockNoteHandler(BLOCKTYPE a_BlockType)
		: cBlockEntityHandler(a_BlockType)
	{
	}

};