Files
BABA_YAGA/Assets/Opsive/UltimateCharacterController/Scripts/Items/Actions/PerspectiveProperties/IThrowableItemPerspectiveProperties.cs
2026-06-14 23:57:44 +07:00

19 lines
580 B
C#

/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.UltimateCharacterController.Items.Actions.PerspectiveProperties
{
using UnityEngine;
/// <summary>
/// Interface for an item action that can be thrown.
/// </summary>
public interface IThrowableItemPerspectiveProperties
{
Transform ThrowLocation { get; set; }
Transform TrajectoryLocation { get; set; }
}
}