RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ConstructionObject.java
1
package
com.osroyale.content.skill.impl.construction;
2
3
import
com.osroyale.game.world.position.Position;
4
27
28
public
class
ConstructionObject {
29
30
private
final
int
object;
31
32
private
final
int
rotation;
33
34
private
final
Position
position;
35
36
public
ConstructionObject(
int
object
,
int
rotation,
Position
position) {
37
this.object = object;
38
this.rotation = rotation;
39
this.position = position;
40
}
41
42
public
int
getObject() {
43
return
object;
44
}
45
46
public
int
getRotation() {
47
return
rotation;
48
}
49
50
public
Position
getPosition() {
51
return
position;
52
}
53
}
com.osroyale.game.world.position.Position
Definition
Position.java:51