mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-25 22:58:47 +07:00
11 lines
310 B
JavaScript
Executable File
11 lines
310 B
JavaScript
Executable File
const log = function(context, obj){
|
|
Vars.mods.getScripts().log(context, obj ? String(obj) : "null")
|
|
}
|
|
|
|
const extendContent = function(classType, name, params){
|
|
return new JavaAdapter(classType, params, name)
|
|
}
|
|
|
|
const extend = function(classType, params){
|
|
return new JavaAdapter(classType, params)
|
|
} |