workspace 폴더 커밋

This commit is contained in:
2025-05-21 17:54:01 +09:00
parent 0b0d236821
commit ba196b626a
85 changed files with 46855 additions and 0 deletions

View 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();
}
}