This commit is contained in:
2025-11-11 07:50:20 -06:00
parent c07d0b32a9
commit 26bfb912f1
6 changed files with 66 additions and 24 deletions

12
src/rpg/world/tile.c Normal file
View File

@@ -0,0 +1,12 @@
/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "tile.h"
bool_t tileIsWalkable(const tile_t tile) {
return tile == TILE_WALKABLE;
}