Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
opencomputers
/
a014507bebb0db77793c6c025cc651e0a6934652
/
.
/
li
/
cil
/
oc
/
common
/
tileentity
/
TileEntity.scala
blob: 1f2f9c6335cd80accce3c4fa15f57a5555907978 [
file
] [
log
] [
blame
] [
raw
]
package
li
.
cil
.
oc
.
common
.
tileentity
import
net
.
minecraft
.
block
.
Block
import
net
.
minecraft
.
world
.
World
trait
TileEntity
{
def
world
:
World
def
x
:
Int
def
y
:
Int
def
z
:
Int
def
block
:
Block
def
isClient
=
world
.
isRemote
def
isServer
=
!
isClient
}