Files
weixinFrameWork/Assets/Plugins/Easy performant outline/Demo/Scripts/ICollectable.cs
2026-06-05 22:12:05 +08:00

9 lines
142 B
C#

using UnityEngine;
namespace EPOOutline.Demo
{
public interface ICollectable
{
void Collect(GameObject collector);
}
}