Definition at line 3 of file Fog.java.
◆ Fog()
| com.runehive.content.lms.fog.Fog.Fog |
( |
int | lowX, |
|
|
int | lowY, |
|
|
int | highX, |
|
|
int | highY ) |
Definition at line 21 of file Fog.java.
21 {
22 this.lowX = lowX;
23 this.lowY = lowY;
24 this.highX = highX;
25 this.highY = highY;
26 }
References highX, highY, lowX, and lowY.
◆ decrease()
| void com.runehive.content.lms.fog.Fog.decrease |
( |
| ) |
|
Definition at line 28 of file Fog.java.
28 {
29 lowX += 1;
30 lowY += 1;
31 highX -= 1;
32 highY -= 1;
33 System.out.println("fog decrease....");
34 }
References highX, highY, lowX, and lowY.
◆ getHighX()
| int com.runehive.content.lms.fog.Fog.getHighX |
( |
| ) |
|
◆ getHighY()
| int com.runehive.content.lms.fog.Fog.getHighY |
( |
| ) |
|
◆ getLowX()
| int com.runehive.content.lms.fog.Fog.getLowX |
( |
| ) |
|
◆ getLowY()
| int com.runehive.content.lms.fog.Fog.getLowY |
( |
| ) |
|
◆ isSafe()
| boolean com.runehive.content.lms.fog.Fog.isSafe |
( |
| ) |
|
Definition at line 43 of file Fog.java.
43 {
44 return lowX == -1 && lowY == -1 && highX == -1 && highY == -1;
45 }
References highX, highY, lowX, and lowY.
◆ reset()
| void com.runehive.content.lms.fog.Fog.reset |
( |
| ) |
|
Definition at line 36 of file Fog.java.
36 {
37 lowX = -1;
38 lowY = -1;
39 highX = -1;
40 highY = -1;
41 }
References highX, highY, lowX, and lowY.
◆ highX
| int com.runehive.content.lms.fog.Fog.highX |
|
private |
◆ highY
| int com.runehive.content.lms.fog.Fog.highY |
|
private |
◆ lowX
| int com.runehive.content.lms.fog.Fog.lowX |
|
private |
◆ lowY
| int com.runehive.content.lms.fog.Fog.lowY |
|
private |
The documentation for this class was generated from the following file:
- java/com/runehive/content/lms/fog/Fog.java