canto/Assets/Scripts/System/IGameObject.cs
2025-07-14 22:22:25 -04:00

11 lines
212 B
C#

using UnityEngine;
namespace KitsuneCafe.System
{
public interface IGameObject
{
GameObject gameObject { get; }
T GetComponent<T>();
bool TryGetComponent<T>(out T value);
}
}