Rivoreo Source Code Repositories
src.rivoreo.one
/
glowstone
/
66de9b735abfe33094323349be854cd6d4b94197
/
.
/
src
/
net
/
lightstone
/
msg
/
GroundMessage.java
blob: 8b8f6a76d80043bcbb8a7ba8fb8c21386abd6a66 [
file
] [
log
] [
blame
] [
raw
]
package
net
.
lightstone
.
msg
;
public
final
class
GroundMessage
extends
Message
{
private
final
boolean
onGround
;
public
GroundMessage
(
boolean
onGround
)
{
this
.
onGround
=
onGround
;
}
public
boolean
isOnGround
()
{
return
onGround
;
}
}