mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 08:35:34 +00:00
21 lines
No EOL
769 B
C#
21 lines
No EOL
769 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Components.Actors;
|
|
|
|
public abstract partial class InputProvider : Node2D
|
|
{
|
|
public abstract Vector2 GetMovementInput();
|
|
public abstract Vector2 GetAimInput();
|
|
|
|
public abstract bool GetActionJustPressed(string action);
|
|
public abstract bool GetActionPressed(string action);
|
|
public abstract bool GetInventoryJustPressed();
|
|
public abstract bool GetShootPressed();
|
|
public abstract bool GetShootJustPressed();
|
|
public abstract bool GetUseJustPressed();
|
|
public abstract bool GetScanJustPressed();
|
|
public abstract bool GetStrafePressed();
|
|
public abstract bool GetWeaponNextJustPressed();
|
|
public abstract bool GetWeaponPreviousJustPressed();
|
|
public abstract bool GetPauseJustPressed();
|
|
} |