This commit is contained in:
tildearrow 2023-02-15 18:59:49 -05:00
parent 0585d127a6
commit 61e579a10a
4 changed files with 40 additions and 3 deletions

View file

@ -1103,9 +1103,12 @@ struct FurnaceGUIQueryResult {
struct FurnaceGUIImage {
unsigned char* data;
SDL_Texture* tex;
int width, height, ch;
FurnaceGUIImage():
data(NULL),
tex(NULL),
width(0),
height(0),
ch(0) {}
@ -1873,7 +1876,8 @@ class FurnaceGUI {
void pushToggleColors(bool status);
void popToggleColors();
const FurnaceGUIImage* getImage(FurnaceGUIImages image);
FurnaceGUIImage* getImage(FurnaceGUIImages image);
SDL_Texture* getTexture(FurnaceGUIImages image);
void drawMobileControls();
void drawMobileOrderSel();