mirror of
				https://github.com/nothke/quality-control.git
				synced 2025-11-04 02:05:57 +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);
 | 
						|
    }
 | 
						|
}
 |