workspace 폴더 커밋
This commit is contained in:
21
Assets/TMPFolder/Popup/IUIPopupContent.cs
Normal file
21
Assets/TMPFolder/Popup/IUIPopupContent.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Studio.UI.Popup
|
||||
{
|
||||
public interface IUIPopupContent
|
||||
{
|
||||
/// <summary>
|
||||
/// 확인 처리 할 수 있는 상태 인지 여부
|
||||
/// </summary>
|
||||
bool IsOkable { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 취소 처리 할 수 있는 상태 인지 여부
|
||||
/// </summary>
|
||||
bool IsCancelable { get; }
|
||||
|
||||
/// <summary>
|
||||
/// return 할 결과 값
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
object GetResult();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user