This commit is contained in:
2026-06-11 21:18:57 +07:00
parent 76e098d960
commit 97ae65f446
5779 changed files with 974 additions and 4758514 deletions

View File

@@ -1,24 +0,0 @@
/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.UltimateCharacterController.StateSystem
{
/// <summary>
/// Interface for any object which uses the StateSystem. Allows the StateManager to interact with a common object.
/// </summary>
public interface IStateOwner
{
/// <summary>
/// Callback when the StateManager will change the active state on the current object.
/// </summary>
void StateWillChange();
/// <summary>
/// Callback when the StateManager has changed the active state on the current object.
/// </summary>
void StateChange();
}
}