unity-atoms/Packages/FSM/Runtime/Transition/TransitionListWrapper.cs
2020-03-21 22:45:39 +01:00

10 lines
258 B
C#

using System;
namespace UnityAtoms.FSM
{
/// <summary>
/// Needed in order to use our custom property drawer for transitions in the FSM.
/// </summary>
[Serializable]
public class TransitionListWrapper : AtomListWrapper<Transition> { }
}