Files
BABA_YAGA/Assets/Opsive/UltimateCharacterController/Scripts/Items/Actions/PerspectiveProperties/IFlashlightPerspectiveProperties.cs

18 lines
498 B
C#
Raw Normal View History

2026-06-14 23:57:44 +07:00
/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.UltimateCharacterController.Items.Actions.PerspectiveProperties
{
using UnityEngine;
/// <summary>
/// Interface for a flashlight.
/// </summary>
public interface IFlashlightPerspectiveProperties
{
GameObject Light { get; set; }
}
}