mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-28 07:22:21 -08:00
13 lines
No EOL
327 B
JavaScript
Executable file
13 lines
No EOL
327 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)
|
|
}
|
|
|
|
const base = {} |