add initial implementation of LDtk importer with data models and scene builder

This commit is contained in:
2025-09-23 01:54:37 +02:00
parent faa4715250
commit d92e2b004e
22 changed files with 1710 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace CSharpLdtkImporter.Models;
public class LdtkEntityInstance
{
[JsonPropertyName("__identifier")]
public string Identifier { get; set; }
[JsonPropertyName("px")]
public int[] Px { get; set; }
}