17 lines
236 B
C
17 lines
236 B
C
//
|
|
// Created by bruno on 2.6.2025.
|
|
//
|
|
|
|
#ifndef FACTORYGAME_MINER_H
|
|
#define FACTORYGAME_MINER_H
|
|
|
|
#include "../items/item.h"
|
|
#include "stdint.h"
|
|
|
|
#define MINER_OUTPUT_SLOT 0
|
|
|
|
void updateMiner(Tile * tile);
|
|
|
|
|
|
#endif //FACTORYGAME_MINER_H
|