Been wondering throughout the course why you’re always using methods for exposing properties instead of private set, public get. IE:
private bool _isEnemy;
public bool IsEnemy() => _isEnemy;
Is there a reason why you chose to do a method getter, instead of a private set, public get property?
public bool IsEnemy => _isEnemy;