1 2 3 4 5 6 7 8 9 10 11 12
use super::Entity; /// Represents a point entity (light, prop, etc.) #[derive(Debug)] pub struct PointEntity<'src> { pub base: Entity<'src>, // Point entity specific properties pub scale: Option<f32>, pub fademindist: Option<f32>, pub fademaxdist: Option<f32>, }