Skip to content

Instantly share code, notes, and snippets.

@mkock
Last active October 3, 2021 09:22
Show Gist options
  • Select an option

  • Save mkock/4cab545ab2cbffeabd32326d294575fe to your computer and use it in GitHub Desktop.

Select an option

Save mkock/4cab545ab2cbffeabd32326d294575fe to your computer and use it in GitHub Desktop.
type equippable interface{
equip()
unequip()
}
type meleeWeapon interface {
equippable // Embeds equippable
slash()
}
type rangedWeapon interface {
equippable // Embeds equippable
shoot()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment