Source: Thing.Extend/Objects/City.js


/**
 * @class THING.City
 */
class City extends THING.BaseObject3D {
    
	static defaultTagArray = ['City'];

    constructor(param){
        super(param);
        this.id = this.name = "City";
    }
    
    get isCity() {
        return true;
    }

    get type(){
        return "City";
    }
    
	get campuses() {
		return this.children.query('.Campus');
	}

	get things() {
		return this.children.query('.Thing');
	}
}

module.exports = City;