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