API Docs for:
Show:

File: ../src/Component.js

(function(ArtemiJS) {
    'use strict';
    
    /**
     * A tag class. All components in the system must extend this class.
     * 
     * @module ArtemiJS
     * @class Component
     * @constructor
     */
    var Component = function() {};

    ArtemiJS.Component = Component;
})(window.ArtemiJS || {});