chore: restructure

This commit is contained in:
cha0s 2019-04-13 20:53:02 -05:00
parent c2b2196018
commit 5a8940e922
3 changed files with 4 additions and 3 deletions

View File

@ -178,8 +178,7 @@ export function createProxy(entity) {
return new Proxy(entity, new TraitProxy());
}
export {EntityList} from './list';
export {EntityListView} from './list-view';
export {EntityList, EntityListView} from './list';
export {
hasTrait,

View File

@ -6,7 +6,7 @@ import {QuadTree, Rectangle, Vector} from '@avocado/math';
import {EventEmitter} from '@avocado/mixins';
import {Synchronized} from '@avocado/state';
import {create} from './index';
import {create} from '../index';
const decorate = compose(
EventEmitter,
@ -115,3 +115,5 @@ export class EntityList extends decorate(Synchronized) {
}
}
export {EntityListView} from './view';