added micoodle api

mainly just for solar power bonus
This commit is contained in:
DarkGuardsman 2013-09-20 14:45:17 -04:00
parent 484882de9d
commit 746be27657
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,6 @@
package micdoodle8.mods.galacticraft.API;
public interface IEntityBreathable
{
public boolean canBreath();
}

View file

@ -0,0 +1,6 @@
package micdoodle8.mods.galacticraft.API;
public interface ISolarLevel
{
public double getSolarEnergyMultiplier();
}