forked from aly/qstbak
muffin v7.5.11
This commit is contained in:
parent
addf2d530f
commit
3102923ce2
522 changed files with 41082 additions and 211592 deletions
21
Questionable/Questionable.LgbWorker/LevelEntry.cs
Normal file
21
Questionable/Questionable.LgbWorker/LevelEntry.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Questionable.LgbWorker;
|
||||
|
||||
internal sealed class LevelEntry
|
||||
{
|
||||
[JsonPropertyName("objectId")]
|
||||
public uint ObjectId { get; set; }
|
||||
|
||||
[JsonPropertyName("territoryId")]
|
||||
public ushort TerritoryId { get; set; }
|
||||
|
||||
[JsonPropertyName("x")]
|
||||
public float X { get; set; }
|
||||
|
||||
[JsonPropertyName("y")]
|
||||
public float Y { get; set; }
|
||||
|
||||
[JsonPropertyName("z")]
|
||||
public float Z { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue