ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/gadget/cloud/ISmileyCloudEasterEgg.java

15 lines
283 B
Java
Raw Normal View History

package ellpeck.actuallyadditions.gadget.cloud;
public interface ISmileyCloudEasterEgg{
/**
* Extra rendering function
*/
void renderExtra(float f);
/**
* The name the cloud has to have for this effect to occur
*/
2015-08-24 17:57:11 +02:00
String[] getTriggerNames();
}