source: src/main/java/uva/projectai/y2018/jasparon/AbstractState.java@ 148

Last change on this file since 148 was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 171 bytes
Line 
1package uva.projectai.y2018.jasparon;
2
3public 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.