Files
factorygame/tiles/furnace.h
2025-06-01 22:13:02 +02:00

19 lines
316 B
C

//
// Created by bruno on 31.5.2025.
//
#ifndef FACTORYGAME_FURNACE_H
#define FACTORYGAME_FURNACE_H
#include "../items/item.h"
#include "stdint.h"
extern const ItemType FurnaceRecipes[];
#define FURNACE_INPUT_SLOT 0
#define FURNACE_OUTPUT_SLOT 1
void updateFurnace(Tile * tile);
#endif //FACTORYGAME_FURNACE_H