mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2025-04-01 00:35:31 +02:00
6 lines
113 B
C#
6 lines
113 B
C#
using System;
|
|
|
|
namespace Fie.Object
|
|
{
|
|
public delegate void StateChangeDelegate(Type fromState, Type toState);
|
|
}
|