mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-13 23:27:45 +00:00
7 lines
120 B
Rust
7 lines
120 B
Rust
use crate::common::ObjectId;
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub struct Actor {
|
|
pub id: ObjectId,
|
|
pub hp: u32,
|
|
}
|