11 lines
136 B
PHP
Executable File
11 lines
136 B
PHP
Executable File
<?php
|
|
|
|
class area_hollow extends area_base
|
|
{
|
|
function area_hollow()
|
|
{
|
|
$this->type = "area_hollow";
|
|
parent::area_base();
|
|
}
|
|
}
|