Guest User

Untitled

a guest
Jan 22nd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. protocol Flying {
  2. func fly()
  3. }
  4.  
  5. extension Flying {
  6. func fly() {
  7. print("🛩ī¸")
  8. }
  9. }
  10. class SkyCreature: Creature, Flying {
  11. func fight() {
  12. print(„🏹")
  13. }
  14. }
Add Comment
Please, Sign In to add comment