Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Class Character
  2. Extends Entity
  3. Inherits IFightable, ITalkable
  4.  
  5. Properties
  6. Public FirstName, LastName, Password, Level
  7. Private Something
  8.  
  9. Methods
  10. Public Talk, Fight, ShowInfo
  11.  
  12. Variables
  13. SomethingElse
  14.  
  15. Talk
  16. Parameters Message
  17. Return FormattedName + ": " + Message
  18.  
  19.  
  20. FormattedName
  21. Return FirstName + " " + LastName
  22.  
  23. Fight
  24. #Comment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement