mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-24 05:21:15 -08:00
7 lines
197 B
JavaScript
Executable file
7 lines
197 B
JavaScript
Executable file
const print = function(obj){
|
|
java.lang.System.out.println(obj ? String(obj) : "null")
|
|
}
|
|
|
|
const extend = function(classType, name, params){
|
|
return new JavaAdapter(classType, params, name)
|
|
}
|