Skip to content

Instantly share code, notes, and snippets.

@lfmundim
Created April 27, 2020 23:13
Show Gist options
  • Save lfmundim/98b0c6881816fff717d64a7d3a2d72b8 to your computer and use it in GitHub Desktop.
Save lfmundim/98b0c6881816fff717d64a7d3a2d72b8 to your computer and use it in GitHub Desktop.
public class AfricanBird : Bird
{
    public override double GetSpeed()
    {
        // logic for African birds
    }
}

public class AmericanBird : Bird
{
    public override double GetSpeed()
    {
        // logic for American birds
    }
}

public class EuropeanBird : Bird
{
    public override double GetSpeed()
    {
        // logic for European birds
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment