Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Farmlanders/Library/PackageCache/com.unity.2d.animation@7.0.9/Editor/SpriteLib/SpriteLibCombineCache.cs
2023-07-31 21:20:56 +02:00

15 lines
385 B
C#

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.U2D.Animation;
namespace UnityEditor.U2D.Animation
{
internal class SpriteLibCombineCache : ScriptableObject
{
[SerializeField]
List<SpriteLibCategoryOverride> m_Library = new List<SpriteLibCategoryOverride>();
public List<SpriteLibCategoryOverride> library => m_Library;
}
}