RuneHive-Game
Loading...
Searching...
No Matches
Flowers.java
Go to the documentation of this file.
1package com.runehive.content.gambling;
2
3public enum Flowers {
4 /**
5 * The black flower
6 */
7 BLACK(2988),
8 /**
9 * The blue flower
10 */
11 BLUE(2982),
12 /**
13 * The orange flower
14 */
15 ORANGE(2985),
16 /**
17 * The pastel flower. Purple, blue, cyan
18 */
19 PASTEL(2980),
20 /**
21 * The purple flower
22 */
23 PURPLE(2984),
24 /**
25 * The rainbow flower. Red, yellow, blue
26 */
27 RAINBOW(2986),
28 /**
29 * The red flower
30 */
31 RED(2981),
32 /**
33 * The white flower
34 */
35 WHITE(2987),
36 /**
37 * The yellow
38 */
39 YELLOW(2983);
40
41 /**
42 * The id
43 */
44 private int id;
45
46 /**
47 * The id
48 *
49 * @param id
50 * the id
51 */
52 Flowers(int id) {
53 this.setId(id);
54 }
55
56 /**
57 * Gets the id
58 *
59 * @return the id
60 */
61 public int getId() {
62 return id;
63 }
64
65 /**
66 * Sets the id
67 *
68 * @param id
69 * the id
70 */
71 public void setId(int id) {
72 this.id = id;
73 }
74}
void setId(int id)
Sets the id.
Definition Flowers.java:71