mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-25 22:58:47 +07:00
12 lines
313 B
JavaScript
Executable File
12 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)
|
|
}
|