Files
beyond/Assets/ThirdParty/Invector-3rdPersonController/Basic Locomotion/Scripts/CharacterController/vICharacter.cs
2024-11-20 15:21:28 +01:00

16 lines
450 B
C#

using UnityEngine;
namespace Invector.vCharacterController
{
[System.Serializable]
public class OnActiveRagdoll : UnityEngine.Events.UnityEvent<vDamage> { }
public interface vICharacter : vIHealthController
{
OnActiveRagdoll onActiveRagdoll { get; }
Animator animator { get; }
bool isCrouching { get; }
bool ragdolled { get; set; }
void EnableRagdoll();
void ResetRagdoll();
}
}