From 7422a663af0c2da799ce6685b4b53adbefd48e62 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 6 Dec 2022 13:27:56 +0000 Subject: [PATCH] Remove With_ methods --- .../VirtualParadiseModelObjectBuilder.cs | 38 +------------------ 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs b/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs index d2f79e6..27f3d08 100644 --- a/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs +++ b/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs @@ -1,5 +1,4 @@ -using System.Numerics; -using VpSharp.Internal; +using VpSharp.Internal; using static VpSharp.Internal.NativeAttributes.StringAttribute; using static VpSharp.Internal.NativeMethods; @@ -37,41 +36,6 @@ public sealed class VirtualParadiseModelObjectBuilder : VirtualParadiseObjectBui /// The value of this object's Model field, or to leave unchanged. public Optional Model { get; set; } - /// - /// Sets the value of this object's Action field. - /// - /// The new value of the Action field, or to leave unchanged. - /// The current instance of this builder. - public VirtualParadiseModelObjectBuilder WithAction(Optional action) - { - Action = action; - return this; - } - - /// - /// Sets the value of this object's Description field. - /// - /// - /// The new value of the Description field, or to leave unchanged. - /// - /// The current instance of this builder. - public VirtualParadiseModelObjectBuilder WithDescription(Optional description) - { - Description = description; - return this; - } - - /// - /// Sets the value of this object's Model field. - /// - /// The new value of the Model field, or to leave unchanged. - /// The current instance of this builder. - public VirtualParadiseModelObjectBuilder WithModel(Optional model) - { - Model = model; - return this; - } - internal override void ApplyChanges() { base.ApplyChanges();