aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/TickEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/events/TickEvent.kt')
-rw-r--r--src/main/kotlin/events/TickEvent.kt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/kotlin/events/TickEvent.kt b/src/main/kotlin/events/TickEvent.kt
index 18007f8..bf51774 100644
--- a/src/main/kotlin/events/TickEvent.kt
+++ b/src/main/kotlin/events/TickEvent.kt
@@ -3,5 +3,8 @@
package moe.nea.firmament.events
data class TickEvent(val tickCount: Int) : FirmamentEvent() {
+ // TODO: introduce a client / server tick system.
+ // client ticks should ignore the game state
+ // server ticks should per-tick count packets received by the server
companion object : FirmamentEventBus<TickEvent>()
}