23 lines
178 B
C++
23 lines
178 B
C++
|
|
#pragma once
|
|
|
|
#include "ItemHandler.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cItemWoodHandler :
|
|
public cItemHandler
|
|
{
|
|
public:
|
|
cItemWoodHandler(int a_ItemType)
|
|
: cItemHandler(a_ItemType)
|
|
{
|
|
}
|
|
} ;
|
|
|
|
|
|
|
|
|