mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
7 lines
113 B
C#
7 lines
113 B
C#
|
using System;
|
||
|
|
||
|
namespace Fie.Object
|
||
|
{
|
||
|
public delegate void StateChangeDelegate(Type fromState, Type toState);
|
||
|
}
|