18 lines
498 B
C#
18 lines
498 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 a flashlight.
|
|
/// </summary>
|
|
public interface IFlashlightPerspectiveProperties
|
|
{
|
|
GameObject Light { get; set; }
|
|
}
|
|
} |