Unicopia/src/main/java/com/minelittlepony/unicopia/spell/IAligned.java

12 lines
245 B
Java

package com.minelittlepony.unicopia.spell;
/**
* Interface for things that have an affine alignment.
*/
public interface IAligned {
/**
* Gets the current alignment.
* Good/Bad/Neutral
*/
SpellAffinity getAffinity();
}