add initial implementation of LDtk importer with data models and scene builder
This commit is contained in:
12
addons/csharp_ldtk_importer/Models/LdtkEntityInstance.cs
Normal file
12
addons/csharp_ldtk_importer/Models/LdtkEntityInstance.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user