Develop and Download Open Source Software

Browse Subversion Repository

Contents of /classes/Song.as

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17 - (show annotations) (download)
Sat Feb 23 11:08:18 2008 UTC (16 years, 3 months ago) by kreuz45
File size: 356 byte(s)
PictureとSongがMsspResourceクラスを継承するように変更
1 /**
2 * ...
3 * @author Default
4 * @version 0.1
5 */
6
7 package {
8
9 import MsspResource;
10
11 /*
12 * 楽曲データを保持するクラス
13 */
14 public class Song extends MsspResource {
15
16 private var title:String;
17
18 public function Song(_title:String, _fileName:String) {
19 title = _title;
20 fileName = _fileName;
21 }
22
23 }
24
25 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26