├── LICENSE ├── README.md ├── Super Mario.jar ├── bin ├── Images │ ├── bg.png │ ├── bg2.png │ ├── brick.png │ ├── brick2.png │ ├── flag.png │ ├── flower1.1.png │ ├── flower1.2.png │ ├── fungus1.png │ ├── fungus2.png │ ├── fungus3.png │ ├── gan.png │ ├── jump1_L.png │ ├── jump1_R.png │ ├── pipe1.png │ ├── pipe2.png │ ├── pipe3.png │ ├── pipe4.png │ ├── run1_L.png │ ├── run1_R.png │ ├── run2_L.png │ ├── run2_R.png │ ├── soil_base.png │ ├── soil_up.png │ ├── stand_L.png │ ├── stand_R.png │ ├── start.jpg │ └── tower.png ├── Music │ └── music.wav └── 马里奥 │ ├── Background.class │ ├── Enemy.class │ ├── Huancun.class │ ├── Listener.class │ ├── MyFrame.class │ ├── mario.class │ ├── music.class │ └── zhangai.class ├── lib └── jl-1.0.1.jar └── src ├── Images ├── bg.png ├── bg2.png ├── brick.png ├── brick2.png ├── flag.png ├── flower1.1.png ├── flower1.2.png ├── fungus1.png ├── fungus2.png ├── fungus3.png ├── gan.png ├── jump1_L.png ├── jump1_R.png ├── pipe1.png ├── pipe2.png ├── pipe3.png ├── pipe4.png ├── run1_L.png ├── run1_R.png ├── run2_L.png ├── run2_R.png ├── soil_base.png ├── soil_up.png ├── stand_L.png ├── stand_R.png ├── start.jpg └── tower.png ├── Mario ├── Background.java ├── Enemy.java ├── Huancun.java ├── Listener.java ├── MyFrame.java ├── mario.java ├── music.java └── zhangai.java └── Music └── music.wav /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Yiming Zhang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Super-Mario 2 | 3 | 这是一个马里奥的小游戏 4 | 5 | 很适合Java初学者上手 6 | 包含了Swing组件、Jframe、监听器、多线程等 7 | 8 | WASD控制上下左右移动 9 | 10 | 下载后可以在Zhangai类中自定义更改关卡的样貌 11 | 自由度很高! 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Super Mario.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/Super Mario.jar -------------------------------------------------------------------------------- /bin/Images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/bg.png -------------------------------------------------------------------------------- /bin/Images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/bg2.png -------------------------------------------------------------------------------- /bin/Images/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/brick.png -------------------------------------------------------------------------------- /bin/Images/brick2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/brick2.png -------------------------------------------------------------------------------- /bin/Images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/flag.png -------------------------------------------------------------------------------- /bin/Images/flower1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/flower1.1.png -------------------------------------------------------------------------------- /bin/Images/flower1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/flower1.2.png -------------------------------------------------------------------------------- /bin/Images/fungus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/fungus1.png -------------------------------------------------------------------------------- /bin/Images/fungus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/fungus2.png -------------------------------------------------------------------------------- /bin/Images/fungus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/fungus3.png -------------------------------------------------------------------------------- /bin/Images/gan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/gan.png -------------------------------------------------------------------------------- /bin/Images/jump1_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/jump1_L.png -------------------------------------------------------------------------------- /bin/Images/jump1_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/jump1_R.png -------------------------------------------------------------------------------- /bin/Images/pipe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/pipe1.png -------------------------------------------------------------------------------- /bin/Images/pipe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/pipe2.png -------------------------------------------------------------------------------- /bin/Images/pipe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/pipe3.png -------------------------------------------------------------------------------- /bin/Images/pipe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/pipe4.png -------------------------------------------------------------------------------- /bin/Images/run1_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/run1_L.png -------------------------------------------------------------------------------- /bin/Images/run1_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/run1_R.png -------------------------------------------------------------------------------- /bin/Images/run2_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/run2_L.png -------------------------------------------------------------------------------- /bin/Images/run2_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/run2_R.png -------------------------------------------------------------------------------- /bin/Images/soil_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/soil_base.png -------------------------------------------------------------------------------- /bin/Images/soil_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/soil_up.png -------------------------------------------------------------------------------- /bin/Images/stand_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/stand_L.png -------------------------------------------------------------------------------- /bin/Images/stand_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/stand_R.png -------------------------------------------------------------------------------- /bin/Images/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/start.jpg -------------------------------------------------------------------------------- /bin/Images/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Images/tower.png -------------------------------------------------------------------------------- /bin/Music/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/Music/music.wav -------------------------------------------------------------------------------- /bin/马里奥/Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/Background.class -------------------------------------------------------------------------------- /bin/马里奥/Enemy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/Enemy.class -------------------------------------------------------------------------------- /bin/马里奥/Huancun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/Huancun.class -------------------------------------------------------------------------------- /bin/马里奥/Listener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/Listener.class -------------------------------------------------------------------------------- /bin/马里奥/MyFrame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/MyFrame.class -------------------------------------------------------------------------------- /bin/马里奥/mario.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/mario.class -------------------------------------------------------------------------------- /bin/马里奥/music.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/music.class -------------------------------------------------------------------------------- /bin/马里奥/zhangai.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/bin/马里奥/zhangai.class -------------------------------------------------------------------------------- /lib/jl-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/lib/jl-1.0.1.jar -------------------------------------------------------------------------------- /src/Images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/bg.png -------------------------------------------------------------------------------- /src/Images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/bg2.png -------------------------------------------------------------------------------- /src/Images/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/brick.png -------------------------------------------------------------------------------- /src/Images/brick2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/brick2.png -------------------------------------------------------------------------------- /src/Images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/flag.png -------------------------------------------------------------------------------- /src/Images/flower1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/flower1.1.png -------------------------------------------------------------------------------- /src/Images/flower1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/flower1.2.png -------------------------------------------------------------------------------- /src/Images/fungus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/fungus1.png -------------------------------------------------------------------------------- /src/Images/fungus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/fungus2.png -------------------------------------------------------------------------------- /src/Images/fungus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/fungus3.png -------------------------------------------------------------------------------- /src/Images/gan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/gan.png -------------------------------------------------------------------------------- /src/Images/jump1_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/jump1_L.png -------------------------------------------------------------------------------- /src/Images/jump1_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/jump1_R.png -------------------------------------------------------------------------------- /src/Images/pipe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/pipe1.png -------------------------------------------------------------------------------- /src/Images/pipe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/pipe2.png -------------------------------------------------------------------------------- /src/Images/pipe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/pipe3.png -------------------------------------------------------------------------------- /src/Images/pipe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/pipe4.png -------------------------------------------------------------------------------- /src/Images/run1_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/run1_L.png -------------------------------------------------------------------------------- /src/Images/run1_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/run1_R.png -------------------------------------------------------------------------------- /src/Images/run2_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/run2_L.png -------------------------------------------------------------------------------- /src/Images/run2_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/run2_R.png -------------------------------------------------------------------------------- /src/Images/soil_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/soil_base.png -------------------------------------------------------------------------------- /src/Images/soil_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/soil_up.png -------------------------------------------------------------------------------- /src/Images/stand_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/stand_L.png -------------------------------------------------------------------------------- /src/Images/stand_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/stand_R.png -------------------------------------------------------------------------------- /src/Images/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/start.jpg -------------------------------------------------------------------------------- /src/Images/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Images/tower.png -------------------------------------------------------------------------------- /src/Mario/Background.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/Background.java -------------------------------------------------------------------------------- /src/Mario/Enemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/Enemy.java -------------------------------------------------------------------------------- /src/Mario/Huancun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/Huancun.java -------------------------------------------------------------------------------- /src/Mario/Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/Listener.java -------------------------------------------------------------------------------- /src/Mario/MyFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/MyFrame.java -------------------------------------------------------------------------------- /src/Mario/mario.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/mario.java -------------------------------------------------------------------------------- /src/Mario/music.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/music.java -------------------------------------------------------------------------------- /src/Mario/zhangai.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Mario/zhangai.java -------------------------------------------------------------------------------- /src/Music/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ming-XMU/Super-Mario-Game-Java-/61753534ebe948ab7cbd1d4a75b869ac86792f60/src/Music/music.wav --------------------------------------------------------------------------------