client/server separation

This commit is contained in:
Anuken
2020-05-03 21:45:46 -04:00
parent bdb1e29c85
commit 834c15a808
4 changed files with 37 additions and 10 deletions

View File

@@ -23,6 +23,7 @@ const boolp = method => new Boolp(){get: method}
const floatf = method => new Floatf(){get: method}
const floatp = method => new Floatp(){get: method}
const cons = method => new Cons(){get: method}
const cons2 = method => new Cons2(){get: method}
const prov = method => new Prov(){get: method}
const func = method => new Func(){get: method}
const newEffect = (lifetime, renderer) => new Effects.Effect(lifetime, new Effects.EffectRenderer({render: renderer}))