diff options
author | Linnea Gräf <nea@nea.moe> | 2024-05-09 22:12:27 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-05-09 22:12:27 +0200 |
commit | dce5a156849a3ba1b09e28dbfc153fc14a7f7b2c (patch) | |
tree | b51bffce829a14ed1bdccb581acec2dd1838540e /src/main/kotlin/com/dulkirfabric/events | |
parent | 9d2b7bec68f98228acf913f029f0383e4dcff3d7 (diff) | |
download | DulkirMod-Fabric-dce5a156849a3ba1b09e28dbfc153fc14a7f7b2c.tar.gz DulkirMod-Fabric-dce5a156849a3ba1b09e28dbfc153fc14a7f7b2c.tar.bz2 DulkirMod-Fabric-dce5a156849a3ba1b09e28dbfc153fc14a7f7b2c.zip |
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/events')
-rw-r--r-- | src/main/kotlin/com/dulkirfabric/events/WorldRenderLastEvent.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/events/WorldRenderLastEvent.kt b/src/main/kotlin/com/dulkirfabric/events/WorldRenderLastEvent.kt index 11b7714..e91c2f3 100644 --- a/src/main/kotlin/com/dulkirfabric/events/WorldRenderLastEvent.kt +++ b/src/main/kotlin/com/dulkirfabric/events/WorldRenderLastEvent.kt @@ -2,6 +2,7 @@ package com.dulkirfabric.events import com.dulkirfabric.events.base.Event import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderContext +import net.minecraft.client.util.math.MatrixStack data class -WorldRenderLastEvent(val context: WorldRenderContext): Event() +WorldRenderLastEvent(val context: WorldRenderContext, val matrixStack: MatrixStack): Event() |