mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-19 04:43:28 +02:00
14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
module.exports = function() {
|
|
|
|
var connected = 'connected';
|
|
|
|
createjs.Sound.registerSound('/sounds/connected.mp3', connected);
|
|
|
|
return {
|
|
connected: function() {
|
|
createjs.Sound.play(connected);
|
|
}
|
|
};
|
|
|
|
};
|