summaryrefslogtreecommitdiff
path: root/src/Model/Unit/PitWorker.php
blob: 4f873b410ee570b79e653c556802566bfef6c30c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace App\Model\Unit;

use App\Model\Unit;

class PitWorker extends Unit
{
  public string $buildingType = 'ClayPit';
  public int $travelTime = 1;
  public int $populationDemandFactor = 1;
  public array $resourceRequirements = [
    'wood' => 1.0,
  ];
}