Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
opencomputers
/
331e89abf93c0f6b038b9cdb1abdc10de143ac51
/
.
/
src
/
main
/
optional
/
forestry
/
api
/
food
/
IBeverageEffect.java
blob: 14b91b13069a745d62fb38c19dd8311c27f0ffd3 [
file
] [
log
] [
blame
] [
raw
]
package
forestry
.
api
.
food
;
import
net
.
minecraft
.
entity
.
player
.
EntityPlayer
;
import
net
.
minecraft
.
world
.
World
;
public
interface
IBeverageEffect
{
int
getId
();
void
doEffect
(
World
world
,
EntityPlayer
player
);
String
getDescription
();
}