forked from External/mage
13 lines
252 B
Java
13 lines
252 B
Java
package mage.client.util.audio;
|
|
|
|
/**
|
|
* Used to dived the sound clips in different groups to make them active by group
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public enum AudioGroup {
|
|
GameSounds,
|
|
DraftSounds,
|
|
SkipSounds,
|
|
OtherSounds;
|
|
}
|