Files
przygody-pana-cegly/scripts/interfaces/IThrowInput.cs

10 lines
219 B
C#

using Godot;
namespace Mr.BrickAdventures.scripts.interfaces;
public interface IThrowInput
{
public void ProcessInput(InputEvent @event);
public void Update(double delta);
public bool SupportsCharging();
}