UNPKG

cylon-leapmotion

Version:

Cylon module for the Leap Motion

18 lines (13 loc) 296 B
"use strict"; var Adaptor = require("./lib/adaptor"), Driver = require("./lib/driver"); module.exports = { adaptors: ["leapmotion"], drivers: ["leapmotion"], adaptor: function(opts) { return new Adaptor(opts); }, driver: function(opts) { return new Driver(opts); } };