summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/gamestate/mapview/MapMusicType.java
blob: 52fd712edfd4b0e56d9e4a3a3f343b58a6f86695 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.fourisland.fourpuzzle.gamestate.mapview;

/**
 *
 * @author hatkirby
 */
public enum MapMusicType {
    /**
     * NoMusic represents the instance where no Music should be played
     */
    NoMusic,
    /**
     * NoChange represents the instance where the currently playing Music (or
     * silence) should be kept
     */
    NoChange,
    /**
     * Specified represents the instance where a specified Music file should be
     * played
     */
    Specified
}