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"); }