c68aa68c69
git-svn-id: http://mc-server.googlecode.com/svn/trunk@977 0a769ca7-a7f5-676a-18bf-c427514a06d6
23 lines
200 B
C++
23 lines
200 B
C++
|
|
#pragma once
|
|
|
|
#include "ItemHandler.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cItemWoodHandler :
|
|
public cItemHandler
|
|
{
|
|
public:
|
|
cItemWoodHandler(int a_ItemType)
|
|
: cItemHandler(a_ItemType)
|
|
{
|
|
}
|
|
} ;
|
|
|
|
|
|
|
|
|