Add material, reflection and so on. Also use IntelliJ

This commit is contained in:
Sven Weidauer 2024-12-01 12:14:50 +01:00
parent 753f8b721a
commit b0a4f766b4
21 changed files with 622 additions and 132 deletions

18
build.gradle.kts Normal file
View file

@ -0,0 +1,18 @@
plugins {
kotlin("jvm") version "2.0.21"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}