mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-26 12:44:36 +00:00
* Remove stdafx.h and some <unordered_set> includes * Update Minecraft Server Defines and remove more unused folders/files * Unbloat stdafx.h from Minecraft.World
18 lines
406 B
C++
18 lines
406 B
C++
#include "net.minecraft.network.packet.h"
|
|
#include "net.minecraft.world.entity.player.h"
|
|
#include "net.minecraft.world.level.h"
|
|
#include "ComplexItem.h"
|
|
|
|
ComplexItem::ComplexItem(int id) : Item(id)
|
|
{
|
|
}
|
|
|
|
bool ComplexItem::isComplex()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
shared_ptr<Packet> ComplexItem::getUpdatePacket(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player)
|
|
{
|
|
return nullptr;
|
|
} |