Methapolis  0.27
 All Classes Namespaces Files Functions Variables Enumerator
ResearchData.java
Go to the documentation of this file.
1 package micropolisj.research;
2 
3 import java.io.Serializable;
4 
5 public class ResearchData implements Serializable{
6 
7  public int rocketResearch;
8  public int policeResearch;
9  public int fireResearch;
10  public int environmentResearch;
11  public int researchPoints;
12 
13  public boolean isRocketPossible() {
14  return rocketResearch > 0;
15  }
16 
17  public int getRocketRadius() {
19  }
20 }