13 lines
265 B
C++
13 lines
265 B
C++
// Copyright (c) 2024 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "Tile.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
bool_t Tile::isSolid() {
|
|
if(this->id == TileID::Null) return false;
|
|
return false;
|
|
} |