Antoine
Antoine
Of curse it is possible to use C++. The exported functions (e.g. `cuberite_initialize`, `cuberite_on_disable`) must be C functions (on C++, these functions must have the keyword `extern "C"`)
Cuberite is designed to be efficient with memory and CPU but lua is much slower than C. Also C gives access to more languages (C++, JVM through JNI, etc). It...
Hello, I had the same problem and I added `en_US.UTF-8 UTF-8` to `/etc/locale.gen` and I run `locale-gen` as root
I created a pull request! #44
Or another way with a function: ```kotlin val parser = ArgParser(args) val file: File by parser.option(ArgType.String).transform { File(it) } ```
Hello, thanks for the reply. I do not think ArgType.File is supported because the File class used in the examples above is `java.io.File`, which is not in Kotlin's standard library....
Hello, I know I can do it in this manner, but I do not want to create a new ArgType for each class. If I am not too bored, I...