[Editor] Create empty proto module

This commit is contained in:
2021-02-09 17:21:26 +01:00
parent 728930add9
commit cb820e3632
2 changed files with 19 additions and 0 deletions

18
proto/build.gradle Executable file
View File

@@ -0,0 +1,18 @@
plugins {
id 'java-library'
}
group 'com.bartlomiejpluta.base'
version 'unspecified'
repositories {
mavenCentral()
}
dependencies {
}
test {
useJUnitPlatform()
}

View File

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