From 2e25cb021f086bf4ee6a956a7469f0d9d4d797d2 Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Tue, 5 Aug 2008 18:46:01 +0000 Subject: [PATCH] Add a music sound type git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@607 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/java/com/threerings/media/sound/SoundCodes.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/media/sound/SoundCodes.java b/src/java/com/threerings/media/sound/SoundCodes.java index 8d9c1c6a..20a84872 100644 --- a/src/java/com/threerings/media/sound/SoundCodes.java +++ b/src/java/com/threerings/media/sound/SoundCodes.java @@ -34,7 +34,7 @@ public interface SoundCodes public static final SoundType ALERT = new SoundType("alert"); /** - * Feedback sounds are the type of sounds a player would here when clicking on buttons or + * Feedback sounds are the type of sounds a player would here when clicking on buttons or * performing an action. */ public static final SoundType FEEDBACK = new SoundType("feedback"); @@ -53,4 +53,9 @@ public interface SoundCodes * General game sound effects. */ public static final SoundType GAME_FX =new SoundType("game_fx"); + + /** + * Songs and the like. + */ + public static final SoundType MUSIC = new SoundType("music"); }