Files
2026-02-16 18:32:48 +01:00

7 lines
132 B
C#

namespace Car_simulation.Core.Components
{
public interface ICarComponent
{
void Update(float deltaTime);
}
}