source:
src/main/java/uva/projectai/y2018/jasparon/AbstractState.java@
148
Last change on this file since 148 was 127, checked in by , 6 years ago | |
---|---|
File size: 171 bytes |
Line | |
---|---|
1 | package uva.projectai.y2018.jasparon; |
2 | |
3 | public abstract class AbstractState { |
4 | |
5 | public abstract boolean isInitialState(); |
6 | |
7 | public abstract boolean isTerminalState(); |
8 | |
9 | } |
Note:
See TracBrowser
for help on using the repository browser.