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,32 +0,0 @@
#if ULTIMATE_CHARACTER_CONTROLLER_MELEE
/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.UltimateCharacterController.VR
{
/// <summary>
/// Allows the MeleeWeapon to communicate with a VRMeleeWeapon.
/// </summary>
public interface IVRMeleeWeapon
{
/// <summary>
/// Starts the item use.
/// </summary>
void StartItemUse();
/// <summary>
/// Returns true if the melee weapon can be used.
/// </summary>
/// <returns>True if the melee weapon be used.</returns>
bool CanUseItem();
/// <summary>
/// Stops the item use.
/// </summary>
void StopItemUse();
}
}
#endif