7 lines
132 B
C#
7 lines
132 B
C#
namespace Car_simulation.Core.Components
|
|
{
|
|
public interface ICarComponent
|
|
{
|
|
void Update(float deltaTime);
|
|
}
|
|
} |