15 lines
195 B
C
15 lines
195 B
C
//
|
|
// Created by bruno on 11.6.2025.
|
|
//
|
|
|
|
#ifndef FACTORYGAME_CORE_H
|
|
#define FACTORYGAME_CORE_H
|
|
|
|
#include "tile.h"
|
|
|
|
void updateCore(Tile *tile);
|
|
|
|
void initCoreTile();
|
|
|
|
#endif //FACTORYGAME_CORE_H
|