20 lines
696 B
C#
20 lines
696 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
namespace Procedure
|
|
{
|
|
public abstract class ProcedureBase : GameFramework.Procedure.ProcedureBase
|
|
{
|
|
// 获取流程是否使用原生对话框
|
|
// 在一些特殊的流程(如游戏逻辑对话框资源更新完成前的流程)中,可以考虑调用原生对话框进行消息提示行为
|
|
public abstract bool UseNativeDialog
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|