phantasmal-world/cell/build.gradle.kts

20 lines
337 B
Plaintext

plugins {
id("world.phantasmal.multiplatform")
}
kotlin {
sourceSets {
commonMain {
dependencies {
implementation(project(":core"))
}
}
commonTest {
dependencies {
implementation(project(":test-utils"))
}
}
}
}