C# rewrite (#1)

Reviewed-on: #1
This commit is contained in:
2025-08-14 22:45:10 +00:00
parent 2ad0fe26d2
commit 27c5a3b211
182 changed files with 4590 additions and 18 deletions

View 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);
}

View File

@@ -0,0 +1 @@
uid://bt2g2im63o8fh

View 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();
}

View File

@@ -0,0 +1 @@
uid://cgscn34soorcp

View File

@@ -0,0 +1,6 @@
namespace Mr.BrickAdventures.scripts.interfaces;
public interface IUnlockable
{
void Unlock();
}

View File

@@ -0,0 +1 @@
uid://c3dw0fsemrd0f