client/js/require-utils.js
author rougeronj
Thu, 18 Jun 2015 17:18:00 +0200
changeset 506 460de050f800
parent 293 fba23fde14ba
permissions -rw-r--r--
Create Viewrepr which handle the representation of the View. - Put in all the function about Hidden Nodes - In scene, initializes this.view with the first view of the project (later it will be handled by a view manager)

define([], function ($, _) {
    'use strict';
    return {
        getUtils: function(){
            return window.Rkns.Utils;
        },
        getRenderer: function(){
            return window.Rkns.Renderer;
        }
    };

});