Files
Studio/Assets/TMPFolder/Popup/IUIPopupContent.cs
2025-05-21 17:54:01 +09:00

22 lines
503 B
C#

namespace Studio.UI.Popup
{
public interface IUIPopupContent
{
/// <summary>
/// 확인 처리 할 수 있는 상태 인지 여부
/// </summary>
bool IsOkable { get; }
/// <summary>
/// 취소 처리 할 수 있는 상태 인지 여부
/// </summary>
bool IsCancelable { get; }
/// <summary>
/// return 할 결과 값
/// </summary>
/// <returns></returns>
object GetResult();
}
}