PalacePal/Pal.Client/Configuration/Legacy/JsonMarker.cs

26 lines
601 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Numerics;
2023-03-30 20:01:43 +00:00
namespace Pal.Client.Configuration.Legacy;
[Obsolete]
public class JsonMarker
{
2023-03-30 20:01:43 +00:00
public EType Type { get; set; } = EType.Unknown;
public Vector3 Position { get; set; }
public bool Seen { get; set; }
public List<string> RemoteSeenOn { get; set; } = new();
public List<Guid> Imports { get; set; } = new();
public bool WasImported { get; set; }
public string? SinceVersion { get; set; }
2023-03-30 20:01:43 +00:00
public enum EType
{
Unknown = 0,
Trap = 1,
Hoard = 2,
Debug = 3,
}
}