mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
14 lines
329 B
C#
14 lines
329 B
C#
using System;
|
|
|
|
namespace UnityEditor.Timeline
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
class ActiveInModeAttribute : Attribute
|
|
{
|
|
public TimelineModes modes { get; private set; }
|
|
public ActiveInModeAttribute(TimelineModes timelineModes)
|
|
{
|
|
modes = timelineModes;
|
|
}
|
|
}
|
|
}
|