add initial implementation of LDtk importer with data models and scene builder
This commit is contained in:
12
addons/csharp_ldtk_importer/Models/LdtkLevel.cs
Normal file
12
addons/csharp_ldtk_importer/Models/LdtkLevel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace CSharpLdtkImporter.Models;
|
||||
|
||||
public class LdtkLevel
|
||||
{
|
||||
[JsonPropertyName("identifier")]
|
||||
public string Identifier { get; set; }
|
||||
|
||||
[JsonPropertyName("layerInstances")]
|
||||
public LdtkLayerInstance[] LayerInstances { get; set; }
|
||||
}
|
Reference in New Issue
Block a user