Rivoreo Source Code Repositories
src.rivoreo.one
/
glowstone
/
e0f0b82ba6254f070d9bea6713f8e063cca7b0e4
/
.
/
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
;
}
}