mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-10 12:53:43 +00:00
24 lines
435 B
C#
24 lines
435 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
using Nothke.Interaction.Items;
|
|||
|
|
|||
|
namespace Nothke.Interaction.Integration
|
|||
|
{
|
|||
|
public interface ILockableFreeLook
|
|||
|
{
|
|||
|
void LockFreeLook(bool _lock);
|
|||
|
}
|
|||
|
|
|||
|
public interface IFocusableEffect
|
|||
|
{
|
|||
|
void FocusEffect(bool focus, float distance);
|
|||
|
}
|
|||
|
|
|||
|
public interface IZoomable
|
|||
|
{
|
|||
|
void ZoomIn(bool _zoomIn);
|
|||
|
}
|
|||
|
}
|