Ejemplo n.º 1
0
 public Village() {
   this.bank = new Bank(this);
   this.plots = new ArrayList<Plot>();
   this.regions = new ArrayList<Region>();
   this.residents = new ArrayList<Resident>();
   this.taxData = new ArrayList<TaxData>();
   this.createdDate = Base.getNow();
 }