forked from External/mage
I used Intellij IDEA to automatically refactor code to achive 3 goals. 1) get rid of anonymouse classes, and replace the with lamba to get more readeable and clean code (like in TableWaitingDialog). 2) make effectively final variables actually final to avoid inadvertent changes on it in further releases and keep objects as immutable, as possible. 3) Get rid of unused imports (most of the changes) in whole project classes.
13 lines
238 B
Java
13 lines
238 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
|
|
}
|