Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
426 B · 19 lines
C++
at master
12345678910111213141516171819#include "stdafx.h"#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;}