unity-atoms/Packages/FSM/Runtime/Transition/TransitionListWrapper.cs

10 lines
258 B
C#
Raw Normal View History

2020-03-11 20:30:25 -04:00
using System;
namespace UnityAtoms.FSM
{
2020-03-21 17:45:39 -04:00
/// <summary>
/// Needed in order to use our custom property drawer for transitions in the FSM.
/// </summary>
2020-03-11 20:30:25 -04:00
[Serializable]
public class TransitionListWrapper : AtomListWrapper<Transition> { }
}