Add docs to code
This commit is contained in:
parent
78937cbf29
commit
6a704fbc8b
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@ public interface ILiquidConsumer
|
||||||
* onRecieveLiquid
|
* onRecieveLiquid
|
||||||
* @param vol - The amount this block received.
|
* @param vol - The amount this block received.
|
||||||
* @param side - The side of the block in which the liquid came from.
|
* @param side - The side of the block in which the liquid came from.
|
||||||
|
* @parm type - The type of liquid being received
|
||||||
* @return vol - The amount liquid that can't be recieved
|
* @return vol - The amount liquid that can't be recieved
|
||||||
*/
|
*/
|
||||||
public int onReceiveLiquid(int type, int vol, byte side);
|
public int onReceiveLiquid(int type, int vol, byte side);
|
||||||
|
@ -14,6 +15,7 @@ public interface ILiquidConsumer
|
||||||
/**
|
/**
|
||||||
* You can use this to check if a pipe can connect to this liquid consumer to properly render the graphics
|
* You can use this to check if a pipe can connect to this liquid consumer to properly render the graphics
|
||||||
* @param side - The side in which the electricity is coming from.
|
* @param side - The side in which the electricity is coming from.
|
||||||
|
* @parm type - The type of liquid
|
||||||
* @return Returns true or false if this consumer can receive electricity at this given tick or moment.
|
* @return Returns true or false if this consumer can receive electricity at this given tick or moment.
|
||||||
*/
|
*/
|
||||||
public boolean canRecieveLiquid(int type, byte side);
|
public boolean canRecieveLiquid(int type, byte side);
|
||||||
|
|
Loading…
Reference in a new issue