- Protoyped on the AI movement, found solutions for turns and moving after impacting the player. - Created a full base for AI state machine. - Worked on binding the core AI logic with the finite state machine.
6 lines
75 B
C#
6 lines
75 B
C#
|
|
public interface ICar
|
|
{
|
|
void Init(GameplayManager gameplayManager);
|
|
}
|