9 lines
181 B
Rust
9 lines
181 B
Rust
|
use super::entity_tags::EntityTags;
|
||
|
|
||
|
#[derive(Clone, Debug)]
|
||
|
pub struct EntityInfo {
|
||
|
pub file_name: String,
|
||
|
pub hitbox_radius: Option<f32>,
|
||
|
pub tags: Vec<EntityTags>,
|
||
|
}
|