foul-magics/Mage.Client/src/main/java/mage/client/util/audio/AudioGroup.java
vraskulin 076840df53 Big refactoring
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.
2017-01-09 19:16:53 +03:00

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
}