Rivoreo Source Code Repositories
src.rivoreo.one
/
glowstone
/
bb0b3f0c4e9b476918592a8edeafcb127e9c4d58
/
.
/
src
/
net
/
lightstone
/
msg
/
HealthMessage.java
blob: 6ba9d1c0f3ee665ad894947b3f37b9386665e1ea [
file
] [
log
] [
blame
] [
raw
]
package
net
.
lightstone
.
msg
;
public
final
class
HealthMessage
extends
Message
{
private
final
int
health
;
public
HealthMessage
(
int
health
)
{
this
.
health
=
health
;
}
public
int
getHealth
()
{
return
health
;
}
}