hä ?
Und jetzt .... wie sieht das jetzt aus ???
In [ ]:
Behaviours
----------
public abstract class FlyBehaviour
{
public virtual void fly();
}
public class FlyWithWings: FlyBehaviour
{
public override void fly()
{
.... your Implementation goes here
}
}
public class FlyNoWay: FlyBehaviour
{
public override void fly()
{
.... your Implementation goes here
}
}
In [1]:
print("Hello")