Classes created.

This commit is contained in:
Ilkka Seppala
2015-05-03 22:15:41 +03:00
parent 77255ca798
commit c288f13b21
14 changed files with 150 additions and 2 deletions
@@ -0,0 +1,14 @@
package com.iluwatar;
public abstract class Action {
private ActionType type;
public Action(ActionType type) {
this.type = type;
}
public ActionType getType() {
return type;
}
}