mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
10 lines
258 B
C#
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> { }
|
|
} |