Cuberite
A lightweight, fast and extensible game server for Minecraft
ItemCloth.h
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "ItemHandler.h"
5 
6 
7 
8 
9 
10 class cItemClothHandler final :
11  public cItemHandler
12 {
13 public:
14  constexpr cItemClothHandler(int a_ItemType)
15  : cItemHandler(a_ItemType)
16  {
17 
18  }
19 } ;
20 
21 
22 
23 
constexpr cItemClothHandler(int a_ItemType)
Definition: ItemCloth.h:14