SquareDash/Library/PackageCache/com.unity.2d.tilemap@1.0.0/Editor/EditorTools/TilemapEditorToolPreferencesAsset.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

22 lines
504 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace UnityEditor.Tilemaps
{
[Serializable]
internal struct DefaultTilemapEditorTool
{
public string fullTypeName;
[NonSerialized]
public Type tilemapEditorToolType;
[NonSerialized]
public TilemapEditorTool toolInstance;
}
internal class TilemapEditorToolPreferencesAsset : ScriptableObject
{
public List<DefaultTilemapEditorTool> m_UserDefaultTools;
}
}