Create Editor module
This commit is contained in:
18
editor/build.gradle
Executable file
18
editor/build.gradle
Executable 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"
|
||||
}
|
||||
5
editor/src/main/kotlin/com/bartlomiejpluta/base/editor/App.kt
Executable file
5
editor/src/main/kotlin/com/bartlomiejpluta/base/editor/App.kt
Executable file
@@ -0,0 +1,5 @@
|
||||
package com.bartlomiejpluta.base.editor
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
println("Hello, world!")
|
||||
}
|
||||
@@ -10,4 +10,5 @@
|
||||
rootProject.name = 'BASE'
|
||||
include('engine')
|
||||
include('game')
|
||||
include('editor')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user