RuneHive-Game
Loading...
Searching...
No Matches
ObjectWalkPosition.java
Go to the documentation of this file.
1package com.runehive.game.world.object;
2
3import com.runehive.game.world.position.Position;
4
5public class ObjectWalkPosition {
6
7 private final int id;
8 private final Position position;
9
11 this.id = id;
12 this.position = position;
13 }
14
15 public int getId() {
16 return id;
17 }
18
20 return position;
21 }
22}
Represents a single tile on the game world.
Definition Position.java:14