the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "IUIScene_AbstractContainerMenu.h"
3
4// The 0-indexed slot in the inventory list that lines up with the result slot
5#define FURNACE_SCENE_RESULT_SLOT_UP_OFFSET 6
6#define FURNACE_SCENE_RESULT_SLOT_DOWN_OFFSET -7
7#define FURNACE_SCENE_FUEL_SLOT_UP_OFFSET 0
8#define FURNACE_SCENE_FUEL_SLOT_DOWN_OFFSET -3
9
10class IUIScene_FurnaceMenu : public virtual IUIScene_AbstractContainerMenu
11{
12protected:
13 virtual ESceneSection GetSectionAndSlotInDirection( ESceneSection eSection, ETapState eTapDirection, int *piTargetX, int *piTargetY );
14 int getSectionStartOffset(ESceneSection eSection);
15};