first version of pattern without Tests

This commit is contained in:
SrdjanPaunovic
2017-04-27 13:58:58 +02:00
parent 82b9f4fea7
commit 645e91ed23
14 changed files with 281 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package concreteextensions;
import abstractextensions.CommanderExtension;
import units.CommanderUnit;
/**
* Created by Srdjan on 27-Apr-17.
*/
public class Commander implements CommanderExtension {
private CommanderUnit unit;
public Commander(CommanderUnit commanderUnit) {
this.unit = commanderUnit;
}
}