1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-13 23:27:45 +00:00
kawari/src/world/actor.rs
Joshua Goins ff3313a0f9 Add UpdateHpMpTp packet, make sprint take away debug monster health
This is just for debugging, I want to make attack actions do this
instead.
2025-03-29 12:25:22 -04:00

7 lines
120 B
Rust

use crate::common::ObjectId;
#[derive(Clone, Copy, Debug)]
pub struct Actor {
pub id: ObjectId,
pub hp: u32,
}