Added -h --help to launcher arguments

Added a detailed README
renamed the module `luancher` to `launcher`
This commit is contained in:
2025-02-21 00:04:28 +01:00
parent b892306c09
commit a0eec99f9f
6 changed files with 61 additions and 4 deletions

17
launcher/build.gradle Normal file
View File

@@ -0,0 +1,17 @@
plugins {
id 'java'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
dependencies {
implementation project(":Display")
implementation project(":API")
}
jar{
manifest {
attributes 'Main-Class': 'me.zacharias.chat.launcher.Launcher'
}
}