Add core game components including ConfigFileHandler, GameManager, SaveSystem, and UIManager

This commit is contained in:
2025-08-10 01:35:35 +02:00
parent 4326ca850d
commit b54d886145
31 changed files with 1347 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using Godot;
namespace Mr.BrickAdventures.scripts.interfaces;
public interface IMovement
{
string MovementType { get; }
bool Enabled { get; set; }
Vector2 PreviousVelocity { get; set; }
void _Process(double delta);
void _PhysicsProcess(double delta);
}