RuneHive-Game
Loading...
Searching...
No Matches
MovementEvent.java
Go to the documentation of this file.
1package com.runehive.game.event.impl;
2
3import com.runehive.game.event.Event;
4import com.runehive.game.world.position.Position;
5
6public class MovementEvent implements Event {
7
8 private final Position destination;
9
11 this.destination = destination;
12 }
13
15 return destination;
16 }
17
18}
Represents a single tile on the game world.
Definition Position.java:14
Definition Event.kt:9