some-dungeon-game/class_wall.php

8 lines
101 B
PHP
Raw Normal View History

2021-03-18 19:58:26 +00:00
<?php
class Wall extends Entity
{
const VISIBILITY = parent::VSB_VISIBLE;
const CHAR = '#';
}