14
scripts/interfaces/IMovement.cs
Normal file
14
scripts/interfaces/IMovement.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Godot;
|
||||
|
||||
namespace Mr.BrickAdventures.scripts.interfaces;
|
||||
|
||||
public interface IMovement
|
||||
{
|
||||
string MovementType { get; }
|
||||
bool Enabled { get; set; }
|
||||
Vector2 PreviousVelocity { get; set; }
|
||||
Vector2 LastDirection { get; }
|
||||
|
||||
void _Process(double delta);
|
||||
void _PhysicsProcess(double delta);
|
||||
}
|
||||
1
scripts/interfaces/IMovement.cs.uid
Normal file
1
scripts/interfaces/IMovement.cs.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://bt2g2im63o8fh
|
||||
10
scripts/interfaces/IThrowInput.cs
Normal file
10
scripts/interfaces/IThrowInput.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Godot;
|
||||
|
||||
namespace Mr.BrickAdventures.scripts.interfaces;
|
||||
|
||||
public interface IThrowInput
|
||||
{
|
||||
public void ProcessInput(InputEvent @event);
|
||||
public void Update(double delta);
|
||||
public bool SupportsCharging();
|
||||
}
|
||||
1
scripts/interfaces/IThrowInput.cs.uid
Normal file
1
scripts/interfaces/IThrowInput.cs.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://cgscn34soorcp
|
||||
6
scripts/interfaces/IUnlockable.cs
Normal file
6
scripts/interfaces/IUnlockable.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Mr.BrickAdventures.scripts.interfaces;
|
||||
|
||||
public interface IUnlockable
|
||||
{
|
||||
void Unlock();
|
||||
}
|
||||
1
scripts/interfaces/IUnlockable.cs.uid
Normal file
1
scripts/interfaces/IUnlockable.cs.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://c3dw0fsemrd0f
|
||||
Reference in New Issue
Block a user