Forgot to commit this.

This commit is contained in:
Myrd
2015-03-08 05:55:30 +00:00
parent 13f5a43aa6
commit 006f0534db

View File

@@ -22,6 +22,10 @@ public abstract class GameObjectMap {
return (Card) map((GameObject) c);
}
public GameEntity map(GameEntity e) {
return (GameEntity) map((GameObject) e);
}
public CardCollectionView mapCollection(CardCollectionView cards) {
CardCollection collection = new CardCollection();
for (Card c : cards) {