Implemented banding (#41)

This commit is contained in:
L_J 2018-02-13 20:36:25 +01:00 committed by GitHub
parent adec5cf88b
commit e7301e2c08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 708 additions and 136 deletions

View file

@ -355,6 +355,14 @@ public interface Permanent extends Card, Controllable {
*/
void clearPairedCard();
void addBandedCard(UUID bandedCard);
void removeBandedCard(UUID bandedCard);
List<UUID> getBandedCards();
void clearBandedCards();
void setMorphed(boolean value);
boolean isMorphed();