Skip to content

Instantly share code, notes, and snippets.

@carmeleve
Created October 12, 2020 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carmeleve/275c9ea4bdd3d71654bb1c05e44c90ea to your computer and use it in GitHub Desktop.
Save carmeleve/275c9ea4bdd3d71654bb1c05e44c90ea to your computer and use it in GitHub Desktop.
public class SilentGigantosaurusDecorator : IGigantosaurus
{
protected readonly IGigantosaurus gigantosaurus;
public SilentGigantosaurusDecorator(IGigantosaurus gigantosaurus)
{
this.gigantosaurus = gigantosaurus;
}
public string Roar()
{
return "";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment