UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

11 lines 206 B
export default class Range { min; max; step; constructor(min, max, step) { this.min = min; this.max = max; this.step = step; } } //# sourceMappingURL=Range.js.map