Skip to content

Instantly share code, notes, and snippets.

@saitocastel1900
Last active November 7, 2022 03:46
Show Gist options
  • Save saitocastel1900/684c61b7695ac341366bf6d90c326aa8 to your computer and use it in GitHub Desktop.
Save saitocastel1900/684c61b7695ac341366bf6d90c326aa8 to your computer and use it in GitHub Desktop.
public class AugerCreator : EnemyCreator
{
public override Enemy Create(string name, int hp)
{
Enemy enemy = new Auger(name,hp);
return enemy;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment