aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/util/MinecraftDispatcher.kt
blob: 5f94f41a1540623aa69e017a80419f603b5f83f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

package moe.nea.firmament.util

import kotlinx.coroutines.asCoroutineDispatcher
import net.minecraft.client.MinecraftClient

val MinecraftDispatcher by lazy { MinecraftClient.getInstance().asCoroutineDispatcher() }