Start atlas

This commit is contained in:
2025-06-01 22:13:02 +02:00
parent 96a9a45c20
commit 84805b92cb
64 changed files with 954 additions and 243 deletions

13
tiles/tilecallbacks.c Normal file
View File

@@ -0,0 +1,13 @@
//
// Created by bruno on 1.6.2025.
//
#include "tilecallbacks.h"
#include "furnace.h"
const UpdateTileCallback ItemTileCallbacks[TILEREGISTRY_SIZE] = {
[TYPE_AIR] = NULL,
[TYPE_BLOCK] = NULL,
[TYPE_BELT] = updateBelt,
[TYPE_FURNACE] = updateFurnace
};