git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@565 d9718cc8-9f43-0410-858b-315f434eb58c
34 lines
883 B
Java
34 lines
883 B
Java
// This file is part of MicropolisJ.
|
|
// Copyright (C) 2013 Jason Long
|
|
// Portions Copyright (C) 1989-2007 Electronic Arts Inc.
|
|
//
|
|
// MicropolisJ is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU GPLv3, with additional terms.
|
|
// See the README file, included in this distribution, for details.
|
|
|
|
package micropolisj.engine;
|
|
|
|
/**
|
|
* The information generated by the generateBudget function.
|
|
* @see micropolisj.engine.Micropolis#generateBudget
|
|
*/
|
|
public class BudgetNumbers
|
|
{
|
|
public int taxRate;
|
|
public int taxIncome;
|
|
public int operatingExpenses;
|
|
public int previousBalance;
|
|
public int newBalance;
|
|
|
|
public int roadRequest;
|
|
public int roadFunded;
|
|
public double roadPercent;
|
|
|
|
public int fireRequest;
|
|
public int fireFunded;
|
|
public double firePercent;
|
|
|
|
public int policeRequest;
|
|
public int policeFunded;
|
|
public double policePercent;
|
|
}
|