30 lines
765 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2023-08-12 19:08:38 +01:00
using Newtonsoft.Json;
namespace LootDumpProcessor.Model
{
public class Vector3 : ICloneable
{
[JsonProperty("x", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("x")]
public double? X { get; set; }
[JsonProperty("y", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("y")]
public double? Y { get; set; }
[JsonProperty("z", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("z")]
public double? Z { get; set; }
public object Clone()
{
return new Vector3
{
X = X,
Y = Y,
Z = Z
2023-08-12 19:08:38 +01:00
};
}
}
}