11 lines
230 B
C#
11 lines
230 B
C#
using Godot;
|
|
using Godot.Collections;
|
|
|
|
namespace CSharpLdtkImporter;
|
|
|
|
[Tool]
|
|
[GlobalClass]
|
|
public partial class LdtkEntityMap : Resource
|
|
{
|
|
[Export] public Dictionary<string, PackedScene> EntitySceneMap { get; set; } = new();
|
|
} |