brickrust 1.11.2+brickrust-001

A library which allows Brick Rigs modding
1
2
3
4
5
6
7
#[repr(C)]
#[derive(Debug, Clone, Copy)]
pub struct TOptional<T>
{
    pub value: T,
    pub is_set: u8,
}