Back to project page ambient-nights.
The source code is released under:
MIT License
If you think the Android project ambient-nights listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cs371mproject.ambientnights.content; //from ww w. j a v a2 s . c o m public class Theme { private String name; private String track1; private String track2; public Theme(String n) { name = n; track1 = n + "1.mp3"; track2 = n + "2.mp3"; } public String getName(){ return name; } public String getTrack1(){ return track1; } public String getTrack2(){ return track2; } }