Rivoreo Source Code Repositories
src.rivoreo.one
/
glowstone
/
86e6d89e1ffb221aa898cac6915c05c39a0efaab
/
.
/
src
/
net
/
lightstone
/
model
/
Entity.java
blob: b2b2c8e983cd65b3bb9358f336f76a98a0320e12 [
file
] [
log
] [
blame
] [
raw
]
package
net
.
lightstone
.
model
;
public
abstract
class
Entity
{
protected
Position
position
;
public
Position
getPosition
()
{
return
position
;
}
public
void
setPosition
(
Position
position
)
{
this
.
position
=
position
;
}
}