123456789101112131415161718192021222324 |
- /*
- Music Module Register Script
- */
- //Setup the module information
- var moduleLaunchInfo = {
- Name: "Music",
- Desc: "The best music player in ArOZ Online",
- Group: "Media",
- IconPath: "Music/img/module_icon.png",
- Version: "0.1.0",
- StartDir: "Music/index.html",
- SupportFW: true,
- LaunchFWDir: "Music/index.html",
- SupportEmb: true,
- LaunchEmb: "Music/embedded.html",
- InitFWSize: [475, 720],
- InitEmbSize: [360, 254],
- SupportedExt: [".mp3",".flac",".wav",".ogg",".aac",".webm",".mp4"]
- }
- //Register the module
- registerModule(JSON.stringify(moduleLaunchInfo));
|