Files
Cielonos/Packages/io.continis.subassets/Runtime/ISubAssetAware.cs
SoulliesOfficial f26f9fd374 爆更
2026-03-20 12:07:44 -04:00

13 lines
380 B
C#

using UnityEngine;
namespace SubAssetsToolbox
{
/// <summary>
/// Implement this interface in your ScriptableObjects, to make them compatible with the editor workflows of SubAssets Toolbox.
/// </summary>
public interface ISubAssetAware
{
public void AddSubAsset(Object newSubAsset);
public void RemoveSubAsset(Object removedSubAsset);
}
}