mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-10 23:28:52 +07:00
26 lines
851 B
JavaScript
Executable File
26 lines
851 B
JavaScript
Executable File
const log = function(context, obj){
|
|
Vars.mods.getScripts().log(context, obj ? String(obj) : "null")
|
|
}
|
|
|
|
var scriptName = "base.js"
|
|
var modName = "none"
|
|
|
|
const print = text => log(scriptName, text);
|
|
|
|
const extendContent = function(classType, name, params){
|
|
return new JavaAdapter(classType, params, name)
|
|
}
|
|
|
|
const extend = function(classType, params){
|
|
return new JavaAdapter(classType, params)
|
|
}
|
|
|
|
const run = method => new java.lang.Runnable(){run: method}
|
|
const boolf = method => new Boolf(){get: method}
|
|
const boolp = method => new Boolp(){get: method}
|
|
const cons = method => new Cons(){get: method}
|
|
const prov = method => new Prov(){get: method}
|
|
const newEffect = (lifetime, renderer) => new Effects.Effect(lifetime, new Effects.EffectRenderer({render: renderer}))
|
|
Call = Packages.mindustry.gen.Call
|
|
const Calls = Call //backwards compat
|