From a968bff7e21c9372deca5fce5921999b45d5d348 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 17 May 2017 23:23:18 -0500 Subject: Simulate lyrics engine --- Sources/track.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Sources/track.swift') 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) { -- cgit