AwesomeRunner/Assets/Scripts/Input/IPlayerInput.cs
VladimirPirozhenko 4fa18a41a0 Changed animation strings to hashes, added IPoolable interface, upgrade pool system
Change generation of obstacles
Now all the important objects is cointained by pools
2022-08-09 22:23:49 +03:00

12 lines
213 B
C#

using System;
public enum EInputDirection { LEFT, RIGHT , UP ,DOWN };
public interface IPlayerInput
{
public EInputDirection? ScanDirection();
public bool IsShooting();
// void ActivateAbility();
}