use super::icvar::ConCommandBase;
use super::prelude::*;
#[vtable]
pub struct CVar {
pub base: ConCommandBase,
pub parent: *mut CVar,
pub default_value: *const c_char
}
impl std::fmt::Debug for CVar {
fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
write!(
f,
"CVar {{ base: {:?}, parent: {:?}, default_value: {:?} }}",
self.base, self.parent, self.default_value
)
}
}