Skip to content

Commit 713ab6c

Browse files
committed
remove incorrect 'maybeunused' attributes
1 parent 8bf19bc commit 713ab6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dat/Objects/BridgeObject.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ public record BridgeObject(
4242
[property: LocoStructOffset(0x12)] int16_t SellCostFactor,
4343
[property: LocoStructOffset(0x14)] BridgeDisabledTrackFlags DisabledTrackFlags,
4444
[property: LocoStructOffset(0x16), Browsable(false)] image_id Image,
45-
[property: LocoStructOffset(0x1A), LocoPropertyMaybeUnused] uint8_t NumCompatibleTrackMods,
45+
[property: LocoStructOffset(0x1A)] uint8_t NumCompatibleTrackMods,
4646
[property: LocoStructOffset(0x1B), LocoStructVariableLoad, LocoArrayLength(BridgeObject.MaxNumTrackMods), LocoPropertyMaybeUnused, Browsable(false)] object_id[] TrackModHeaderIds,
47-
[property: LocoStructOffset(0x22), LocoPropertyMaybeUnused] uint8_t NumCompatibleRoadMods,
47+
[property: LocoStructOffset(0x22)] uint8_t NumCompatibleRoadMods,
4848
[property: LocoStructOffset(0x23), LocoStructVariableLoad, LocoArrayLength(BridgeObject.MaxNumRoadMods), LocoPropertyMaybeUnused, Browsable(false)] object_id[] RoadModHeaderIds,
49-
[property: LocoStructOffset(0x2A), LocoPropertyMaybeUnused] uint16_t DesignedYear
49+
[property: LocoStructOffset(0x2A)] uint16_t DesignedYear
5050
) : ILocoStruct, ILocoStructVariableData
5151
{
5252
public const int _03PadSize = 3;

0 commit comments

Comments
 (0)