mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
17 lines
400 B
C#
17 lines
400 B
C#
namespace LootDumpProcessor.Model;
|
|
|
|
public class GroupPosition : ICloneable
|
|
{
|
|
public string Name { get; set; }
|
|
public int Weight { get; set; }
|
|
public Vector3 Position { get; set; }
|
|
public Vector3 Rotation { get; set; }
|
|
|
|
public object Clone() => new GroupPosition
|
|
{
|
|
Name = Name,
|
|
Weight = Weight,
|
|
Position = Position,
|
|
Rotation = Rotation
|
|
};
|
|
} |