RuneHive-Game
Loading...
Searching...
No Matches
ConstructionObject.java
Go to the documentation of this file.
1package com.runehive.content.skill.impl.construction;
2
3import com.runehive.game.world.position.Position;
4
5public class ConstructionObject {
6
7 private final int object;
8
9 private final int rotation;
10
11 private final Position position;
12
13 public ConstructionObject(int object, int rotation, Position position) {
14 this.object = object;
15 this.rotation = rotation;
16 this.position = position;
17 }
18
19 public int getObject() {
20 return object;
21 }
22
23 public int getRotation() {
24 return rotation;
25 }
26
28 return position;
29 }
30}
ConstructionObject(int object, int rotation, Position position)
Represents a single tile on the game world.
Definition Position.java:14