// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Mechanics.Weapons
{
public partial class UxrShotgunPump
{
#region Private Types & Data
///
/// Enumerates the different states in a component.
///
private enum State
{
///
/// Waiting for the pump action in the first direction.
///
WaitPump,
///
/// Waiting for the pump action back.
///
WaitPumpBack
}
#endregion
}
}