1use crate::{helpers::Hash, vector::Vector3}; 2 3#[derive(Debug)] 4pub struct FireInfo { 5 pub pos: Vector3, 6 pub weapon_hash: Hash, 7}