Remove currently unused EnumProperty

This commit is contained in:
Joshua Goins 2025-02-23 15:03:32 -05:00
parent 7766b3cd5d
commit e5b9e9150e
2 changed files with 0 additions and 11 deletions

View file

@ -1,7 +0,0 @@
use binrw::binrw;
#[binrw]
#[derive(Debug)]
pub struct EnumProperty {
pub enum_unk: [u8; 9],
}

View file

@ -1,6 +1,5 @@
pub mod array_property; pub mod array_property;
pub mod bool_property; pub mod bool_property;
pub mod enum_property;
pub mod float_property; pub mod float_property;
pub mod int_property; pub mod int_property;
pub mod map_property; pub mod map_property;
@ -14,7 +13,6 @@ use binrw::helpers::{until, until_eof};
use crate::array_property::ArrayProperty; use crate::array_property::ArrayProperty;
use crate::bool_property::BoolProperty; use crate::bool_property::BoolProperty;
use crate::enum_property::EnumProperty;
use crate::float_property::FloatProperty; use crate::float_property::FloatProperty;
use crate::int_property::IntProperty; use crate::int_property::IntProperty;
use crate::map_property::MapProperty; use crate::map_property::MapProperty;
@ -49,8 +47,6 @@ pub enum Property {
Map(MapProperty), Map(MapProperty),
#[br(magic = b"SetProperty\0")] #[br(magic = b"SetProperty\0")]
Set(SetProperty), Set(SetProperty),
#[br(magic = b"EnumProperty\0")]
Enum(EnumProperty),
} }
// Used in ArrayProperty exclusively, but could be used instead of magic above // Used in ArrayProperty exclusively, but could be used instead of magic above