mnk-vmf 0.1.0

A library for parsing Valve Map Format (VMF) files.
Documentation
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>,
}