Rivoreo Source Code Repositories
src.rivoreo.one
/
glowstone
/
727c87039717a718ad2f63e00c8082904cb04299
/
.
/
src
/
net
/
lightstone
/
model
/
ItemEntity.java
blob: 6b59c81e6f24cd32dbbbb05825a1014a896f2198 [
file
] [
log
] [
blame
] [
raw
]
package
net
.
lightstone
.
model
;
public
final
class
ItemEntity
extends
Entity
{
private
final
Item
item
;
public
ItemEntity
(
Item
item
)
{
this
.
item
=
item
;
}
public
Item
getItem
()
{
return
item
;
}
}