Main/Assets/Code/Logic/MsgPrompt/MsgInfoPriority.cs
2025-01-25 04:38:09 +08:00

20 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Code.Logic
{
/// <summary>
/// 消息的优先级
/// </summary>
public enum MsgInfoPriority
{
Default = 0,
Low = 1,
Normal = 2,
High = 3,
Highest = 4
}
}