added mediator sample

This commit is contained in:
Ilkka Seppala
2014-08-21 20:06:49 +03:00
parent 46408565cd
commit 82f5f88964
12 changed files with 217 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.iluwatar;
public class Rogue extends PartyMemberBase {
@Override
public String toString() {
return "Rogue";
}
}