15 lines
279 B
C
15 lines
279 B
C
//
|
|
// Created by bruno on 1.6.2025.
|
|
//
|
|
|
|
#ifndef FACTORYGAME_TILECALLBACKS_H
|
|
#define FACTORYGAME_TILECALLBACKS_H
|
|
|
|
|
|
#include "tile.h"
|
|
|
|
typedef void (*UpdateTileCallback)(struct Tile *tile);
|
|
|
|
extern const UpdateTileCallback ItemTileCallbacks[];
|
|
#endif //FACTORYGAME_TILECALLBACKS_H
|