src/systems/index.js
import System from './System';
import EntitySystem from './EntitySystem';
import AssetSystem from './AssetSystem';
import RenderSystem, {
RenderTargetWrapper,
Command,
Pipeline,
RenderFullscreenCommand
} from './RenderSystem';
import InputSystem from './InputSystem';
import StorageSystem from './StorageSystem';
import AudioSystem from './AudioSystem';
import AssemblySystem from './AssemblySystem';
export default {
System,
EntitySystem,
AssetSystem,
RenderSystem,
RenderTargetWrapper,
Command,
Pipeline,
RenderFullscreenCommand,
InputSystem,
StorageSystem,
AudioSystem,
AssetSystem
};
export {
System,
EntitySystem,
AssetSystem,
RenderSystem,
RenderTargetWrapper,
Command,
Pipeline,
RenderFullscreenCommand,
InputSystem,
StorageSystem,
AudioSystem,
AssemblySystem
};