11 lines
149 B
C#
11 lines
149 B
C#
using System;
|
|
|
|
namespace T3.Core.Operator.Slots;
|
|
|
|
[Flags]
|
|
public enum DirtyFlagTrigger : byte
|
|
{
|
|
None = 0,
|
|
Always = 0x1,
|
|
Animated = 0x2,
|
|
} |