This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
citylimitsj/src/micropolisj/engine/BudgetNumbers.java
2013-02-20 01:36:57 +00:00

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;
}