This commit is contained in:
Timo Ley 2019-05-18 20:39:22 +02:00
parent 3d5a4d23b3
commit ae0569ec92
2 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,7 @@
package anvil.infinity.conditions; package anvil.infinity.conditions;
public interface ICondition { public interface ICondition<T> {
boolean isFulfilled(T information);
} }

View file

@ -27,8 +27,8 @@ public enum SnapResult {
switch (this) { switch (this) {
case KILLHALF: return "Kill half"; case KILLHALF: return "Kill half";
case DESTROYSTONES: return "Destroy the Stones"; case DESTROYSTONES: return "Destroy the Stones";
case BRINGBACK: return "Bring back the dusted"; case BRINGBACK: return "Bring back the dusted (WIP)";
case RECREATE: return "Recreate the Universe"; case RECREATE: return "Recreate the Universe (WIP)";
case CREATIVE: return "Change to Creative"; case CREATIVE: return "Change to Creative";
} }
return "Kill half"; return "Kill half";