Last active
October 3, 2021 09:22
-
-
Save mkock/4cab545ab2cbffeabd32326d294575fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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