Files
factorygame/tiles/tilecallbacks.c
2025-06-02 22:49:53 +02:00

15 lines
341 B
C

//
// Created by bruno on 1.6.2025.
//
#include "tilecallbacks.h"
#include "furnace.h"
#include "miner.h"
const UpdateTileCallback ItemTileCallbacks[TILEREGISTRY_SIZE] = {
[TYPE_AIR] = NULL,
[TYPE_BLOCK] = NULL,
[TYPE_BELT] = updateBelt,
[TYPE_FURNACE] = updateFurnace,
[TYPE_MINER] = updateMiner
};