27 lines
594 B
C
27 lines
594 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "rpg/entity/entitydir.h"
|
|
|
|
typedef uint8_t tile_t;
|
|
|
|
/**
|
|
* Returns whether or not the given tile is walkable.
|
|
*
|
|
* @param tile The tile to check.
|
|
* @return bool_t True if walkable, false if not.
|
|
*/
|
|
bool_t tileIsWalkable(const tile_t tile);
|
|
|
|
/**
|
|
* Returns whether or not the given tile is a ramp tile.
|
|
*
|
|
* @param tile The tile to check.
|
|
* @return bool_t True if ramp, false if not.
|
|
*/
|
|
bool_t tileIsRamp(const tile_t tile); |