FiE-Game/src/Fie.Object/StateChangeDelegate.cs
2018-11-20 21:10:49 +02:00

6 lines
113 B
C#

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