파일 위치를 twe에서 hwe로 옮김.

This commit is contained in:
2018-04-01 01:23:44 +09:00
parent 1ddd26c8a1
commit 25ec9a2579
201 changed files with 0 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
<?php
namespace sammo;
class CityInitialDetail{
public $id;
public $name;
public $level;
public $population;
public $agriculture;
public $commerce;
public $security;
public $defence;
public $wall;
public $region;
public $path;
public function __construct(
int $id,
string $name,
int $level,
int $population,
int $agriculture,
int $commerce,
int $security,
int $defence,
int $wall,
int $region,
array $path
){
$this->id = $id;
$this->name = $name;
$this->level = $level;
$this->population = $population;
$this->agriculture = $agriculture;
$this->commerce = $commerce;
$this->security = $security;
$this->defence = $defence;
$this->wall = $wall;
$this->region = $region;
$this->path = $path;
}
}