Files
Cielonos/Packages/com.lunawolfstudios.scriptablesheets/Samples~/ComponentPresets/Scripts/IComponentPreset.cs

10 lines
159 B
C#
Raw Normal View History

2026-01-17 11:35:49 -05:00
using UnityEngine;
namespace LunaWolfStudios.ScriptableSheets.Samples.ComponentPresets
{
public interface IComponentPreset
{
void Apply(Object obj);
}
}