major rework

This commit is contained in:
max
2026-02-16 18:32:48 +01:00
parent bbd82da07e
commit 932734e5b4
24 changed files with 1706 additions and 893 deletions

View File

@@ -0,0 +1,7 @@
namespace Car_simulation.Core.Components
{
public interface ICarComponent
{
void Update(float deltaTime);
}
}