FiE-Game/Assets/Scripts/Fie/Object/StateChangeDelegate.cs

6 lines
113 B
C#

using System;
namespace Fie.Object
{
public delegate void StateChangeDelegate(Type fromState, Type toState);
}