undo3d
Version:
Undo3D helps you build free-roaming 3D web apps where thousands of users can collaborate creatively in real time. Expect the first public beta mid-2019, and the first production release mid-2020.
13 lines (9 loc) • 293 B
JavaScript
//// Base < Module < Cli
//// Every app has a Command Line Interface - usually hidden.
import Module from '../../base/module.mjs'
export default class Cli extends Module {
}
//// Static properties.
Object.defineProperties(Cli, {
tree: { value:Module.tree+' < Cli', enumerable:true }
})