1 changed files with 20 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||||
|
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 |
||||
|
|
||||
|
} |
||||
|
|
||||
|
} |
Loading…
Reference in new issue