[ObjectAPI] Draft new Object API

Rought prototype of new object API.
This commit is contained in:
Pete Richards
2016-06-17 16:54:32 -07:00
parent 5de7a96ccc
commit a63e053399
9 changed files with 396 additions and 7 deletions

View File

@ -1,8 +1,13 @@
define([
'EventEmitter',
'legacyRegistry',
'./api/api'
], function (EventEmitter, legacyRegistry, api) {
'./api/api',
'./api/objects/bundle'
], function (
EventEmitter,
legacyRegistry,
api
) {
function MCT() {
EventEmitter.call(this);
this.legacyBundle = { extensions: {} };