ProjectDDD/Assets/_DDD/_Scripts/GameUi/New/IInteractableUi.cs
2025-07-25 16:58:53 +09:00

7 lines
93 B
C#

namespace DDD
{
public interface IInteractableUi
{
void OnInteract();
}
}