the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2using namespace std;
3
4#include "Item.h"
5
6class SeedItem : public Item
7{
8private:
9 int resultId;
10 int targetLand;
11
12public:
13 SeedItem(int id, int resultId, int targetLand);
14
15 virtual bool useOn(shared_ptr<ItemInstance> instance, shared_ptr<Player> player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly=false);
16};