0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 03:30:45 -05:00

19 lines
557 B
C#

using System.Text.Json.Serialization;
namespace LootDumpProcessor.Model;
public class GroupPosition : ICloneable
{
[JsonPropertyName("Name")] public string Name { get; set; }
[JsonPropertyName("Weight")] public int Weight { get; set; }
[JsonPropertyName("Position")] public Vector3 Position { get; set; }
[JsonPropertyName("Rotation")] public Vector3 Rotation { get; set; }
public object Clone() => new GroupPosition
{
Name = Name,
Weight = Weight,
Position = Position,
Rotation = Rotation
};
}