Methapolis  0.27
 All Classes Namespaces Files Functions Variables Enumerator
ResearchNode.java
Go to the documentation of this file.
1 package micropolisj.research;
2 
3 public interface ResearchNode {
4 
5  public String getName(); //changeswp
6 
7  public String getDesc();
8 
9  public String getIcon();
10 
11  public int getCost();
12 
13  // public int getId();
14 
15  // public boolean isReachable(ResearchState state);
16 
17  public void makeChanges(ResearchState state);
18 
19 }