canto/Assets/Scripts/System/IGameObject.cs
2025-08-14 19:11:32 -04:00

11 lines
209 B
C#

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