mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
12 lines
238 B
Java
12 lines
238 B
Java
package com.minelittlepony.unicopia.magic;
|
|
|
|
/**
|
|
* Interface for things that have an affine alignment.
|
|
*/
|
|
public interface Affine {
|
|
/**
|
|
* Gets the current alignment.
|
|
* Good/Bad/Neutral
|
|
*/
|
|
Affinity getAffinity();
|
|
}
|