aboutsummaryrefslogtreecommitdiff
path: root/Sources/track.swift
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2017-05-17 23:23:18 -0500
committerBen Beltran <ben@nsovocal.com>2017-05-17 23:23:18 -0500
commita968bff7e21c9372deca5fce5921999b45d5d348 (patch)
treebca17656820ba12db12a63f7d94764a857a5a8c7 /Sources/track.swift
parentcadf28c5831b225abf9da650127659c0b0bf6e39 (diff)
Simulate lyrics engine
Diffstat (limited to 'Sources/track.swift')
-rw-r--r--Sources/track.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/Sources/track.swift b/Sources/track.swift
index efc09f4..d2a9047 100644
--- a/Sources/track.swift
+++ b/Sources/track.swift
@@ -1,7 +1,7 @@
/// Contains the artist and name of a track
-public class Track {
- public let name: String
- public let artist: String
+class Track {
+ let name: String
+ let artist: String
init(withName trackName: String, andArtist trackArtist: String) {