summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/gamestate/mapview/event/MoveFrequency.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/gamestate/mapview/event/MoveFrequency.java')
-rw-r--r--src/com/fourisland/fourpuzzle/gamestate/mapview/event/MoveFrequency.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/com/fourisland/fourpuzzle/gamestate/mapview/event/MoveFrequency.java b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/MoveFrequency.java new file mode 100644 index 0000000..3e3cc0e --- /dev/null +++ b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/MoveFrequency.java
@@ -0,0 +1,34 @@
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package com.fourisland.fourpuzzle.gamestate.mapview.event;
7
8/**
9 *
10 * @author hatkirby
11 */
12public enum MoveFrequency {
13
14 EIGHT(1),
15 SEVEN(2),
16 SIX(3),
17 FIVE(4),
18 FOUR(5),
19 THREE(6),
20 TWO(7),
21 ONE(8);
22
23 private int freq;
24 private MoveFrequency(int freq)
25 {
26 this.freq = freq;
27 }
28
29 public int getFrequency()
30 {
31 return freq;
32 }
33
34}