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

19 lines
557 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace LootDumpProcessor.Model;
public class GroupPosition : ICloneable
2023-08-12 19:08:38 +01:00
{
[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
2023-08-12 19:08:38 +01:00
{
Name = Name,
Weight = Weight,
Position = Position,
Rotation = Rotation
};
2023-08-12 19:08:38 +01:00
}