22 lines
391 B
C
22 lines
391 B
C
//
|
|
// Created by bruno on 11.6.2025.
|
|
//
|
|
|
|
#ifndef FACTORYGAME_WIREDRAWER_H
|
|
#define FACTORYGAME_WIREDRAWER_H
|
|
|
|
#include "../util/crafter.h"
|
|
|
|
// Suppose this is defined somewhere
|
|
extern const MachineRecipe WireDrawerRecipes[];
|
|
|
|
void updateWireDrawer(Tile *tile);
|
|
|
|
void initWireDrawerTile();
|
|
|
|
#define WIRE_DRAWER_INPUT_SLOT 0
|
|
#define WIRE_DRAWER_OUTPUT_SLOT 1
|
|
|
|
|
|
#endif //FACTORYGAME_WIREDRAWER_H
|