Create Editor module

This commit is contained in:
2021-02-01 19:56:26 +01:00
parent 30a508fb7b
commit 2e82402a52
3 changed files with 24 additions and 0 deletions

18
editor/build.gradle Executable file
View File

@@ -0,0 +1,18 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
}
group 'com.bartlomiejpluta.base'
version 'unspecified'
repositories {
mavenCentral()
}
sourceSets {
main.kotlin.srcDirs += 'src/main/kotlin'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
}

View File

@@ -0,0 +1,5 @@
package com.bartlomiejpluta.base.editor
fun main(args: Array<String>) {
println("Hello, world!")
}

View File

@@ -10,4 +10,5 @@
rootProject.name = 'BASE'
include('engine')
include('game')
include('editor')