14 lines
366 B
C#

namespace TPSBR
{
using Fusion.Addons.AnimationController;
/// <summary>
/// Simple crouch animation state. Uses a single clip.
/// Inherits from ClipState like JetpackState for minimal setup.
/// </summary>
public sealed class CrouchState : ClipState
{
// Intentionally minimal; customization (weapon variants, etc.) can be added later if needed.
}
}