"use strict";

var _ = require("lodash");

/**
 * @class View3D.Roamer
 * 漫游器
 */
function Roamer(objectID) {
    this.objectID = objectID;
};

Roamer.prototype = _.create(Roamer.prototype, {
	constructor: Roamer
});

module.exports = Roamer;