first commit
This commit is contained in:
18
Minecraft.World/ComplexItem.h
Normal file
18
Minecraft.World/ComplexItem.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
using namespace std;
|
||||
|
||||
#include "Item.h"
|
||||
|
||||
class Player;
|
||||
class Packet;
|
||||
class Level;
|
||||
|
||||
class ComplexItem : public Item
|
||||
{
|
||||
protected:
|
||||
ComplexItem(int id);
|
||||
|
||||
public:
|
||||
virtual bool isComplex();
|
||||
virtual shared_ptr<Packet> getUpdatePacket(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player);
|
||||
};
|
||||
Reference in New Issue
Block a user