files arranged using assembly defn
This commit is contained in:
16
Assets/DarkMatter/Code/Core/Contracts/IInputReader.cs
Normal file
16
Assets/DarkMatter/Code/Core/Contracts/IInputReader.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Darkmatter.Core
|
||||
{
|
||||
public interface IInputReader
|
||||
{
|
||||
event Action<Vector2> OnDragValueChanged;
|
||||
bool isMouseButtonPressed { get; }
|
||||
Vector2 dragInput { get; }
|
||||
|
||||
void LockInput();
|
||||
void UnlockInput();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user