Advertisement
Guest User

Untitled

a guest
May 25th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Class: Playlist
  2.  
  3. Attributes:
  4. SongAmount (integer)
  5. PlayLength (float)
  6. SongLength (hash)
  7. PlaylistCreator (string)
  8. PlaylistTitle (string)
  9. SongPlays (hash)
  10.  
  11. Methods:
  12. AverageSongLength (divides PlayLength by SongAmount)
  13. AverageSongsPerHour (divides 60 by AverageSongLength)
  14. AddSong (increases SongAmount, increases PlayLength, modifies SongLength)
  15. RemoveSong (decreases SongAmount, decreases PlayLength, modifies SongLength)
  16. ChangePlaylistTitle (modifies PlaylistTitle)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement