summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/database/Music.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/database/Music.java')
-rw-r--r--src/com/fourisland/fourpuzzle/database/Music.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/com/fourisland/fourpuzzle/database/Music.java b/src/com/fourisland/fourpuzzle/database/Music.java new file mode 100644 index 0000000..4e00ccb --- /dev/null +++ b/src/com/fourisland/fourpuzzle/database/Music.java
@@ -0,0 +1,31 @@
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package com.fourisland.fourpuzzle.database;
7
8/**
9 *
10 * @author hatkirby
11 */
12public enum Music {
13 Title("Opening1"),
14 GameOver("GameOver");
15
16 private String value;
17 private Music(String value)
18 {
19 this.value = value;
20 }
21
22 String getValue()
23 {
24 return value;
25 }
26
27 void setValue(String value)
28 {
29 this.value = value;
30 }
31}