18 lines
343 B (Stored with Git LFS)
C#
18 lines
343 B (Stored with Git LFS)
C#
// Copyright (c) Pixel Crushers. All rights reserved.
|
|
|
|
namespace PixelCrushers.DialogueSystem
|
|
{
|
|
|
|
/// <summary>
|
|
/// Deprecated. This bit mask enum defines the dialogue events.
|
|
/// </summary>
|
|
[System.Flags]
|
|
public enum DialogueEvent
|
|
{
|
|
OnBark = 0x1,
|
|
OnConversation = 0x2,
|
|
OnSequence = 0x4
|
|
}
|
|
|
|
}
|