12 lines
213 B
C#
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();
|
|
}
|