8 lines
216 B
Rust
8 lines
216 B
Rust
use crate::property::IntProperty;
|
|
|
|
#[paramacro::serialized_struct("DALoadOption")]
|
|
#[derive(Debug)]
|
|
pub struct DALoadOptionStruct {
|
|
#[paramacro::serialized_field = "LoadTypes"]
|
|
pub load_types: IntProperty,
|
|
}
|