You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
310 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Apewer
{
/// <summary>后续动作。</summary>
public enum AfterBehavior : int
{
/// <summary>打断。</summary>
Break = 0,
/// <summary>继续。</summary>
Continue = 1
}
}