From 6e3d5382b02af67556678a297e9334ecb5bbbb4b Mon Sep 17 00:00:00 2001 From: Raymond Date: Mon, 9 Aug 2021 11:24:45 -0400 Subject: [PATCH] Add a ctor to Position3 --- Dalamud/Game/Position3.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Dalamud/Game/Position3.cs b/Dalamud/Game/Position3.cs index 3812376df..ed477d511 100644 --- a/Dalamud/Game/Position3.cs +++ b/Dalamud/Game/Position3.cs @@ -23,6 +23,19 @@ namespace Dalamud.Game /// public float Y; + /// + /// Initializes a new instance of the struct. + /// + /// The X position. + /// The Z position. + /// The Y position. + public Position3(float x, float z, float y) + { + this.X = x; + this.Z = z; + this.Y = y; + } + /// /// Convert this Position3 to a System.Numerics.Vector3. ///