muffin v7.5.11

This commit is contained in:
alydev 2026-08-17 20:29:32 +10:00
parent addf2d530f
commit 3102923ce2
522 changed files with 41082 additions and 211592 deletions

View 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; }
}