diff options
author | Linnea Gräf <nea@nea.moe> | 2025-03-18 21:40:32 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-03-18 21:40:32 +0100 |
commit | 4c5ddd2fddb792afe2816e238e54fd496a6c75c6 (patch) | |
tree | ed6dfe96e698e5717a38dd90721eab441715eedb /src/main/kotlin/Compat.kt | |
parent | 40ce4f856718d6b0c7fa15cd40a1f6db2f774e6f (diff) | |
download | Firmament-4c5ddd2fddb792afe2816e238e54fd496a6c75c6.tar.gz Firmament-4c5ddd2fddb792afe2816e238e54fd496a6c75c6.tar.bz2 Firmament-4c5ddd2fddb792afe2816e238e54fd496a6c75c6.zip |
fix: Isolate mixins in alternative source sets
Diffstat (limited to 'src/main/kotlin/Compat.kt')
-rw-r--r-- | src/main/kotlin/Compat.kt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/kotlin/Compat.kt b/src/main/kotlin/Compat.kt new file mode 100644 index 0000000..ba3c88d --- /dev/null +++ b/src/main/kotlin/Compat.kt @@ -0,0 +1,11 @@ +package moe.nea.firmament + +import moe.nea.firmament.util.compatloader.CompatMeta +import moe.nea.firmament.util.compatloader.ICompatMeta + +@CompatMeta +object Compat : ICompatMeta { + override fun shouldLoad(): Boolean { + return true + } +} |