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