Update proxies

This commit is contained in:
Bill 2021-07-30 14:47:36 -04:00
parent 02e11d3dda
commit 46fd61c09c
14 changed files with 25 additions and 9 deletions

View File

@ -1,11 +1,3 @@
export * from './AdvancedMap'; export * from './AdvancedMap';
export * from './INitroPoint';
export * from './NitroAdjustmentFilter';
export * from './NitroContainer';
export * from './NitroFilter';
export * from './NitroPoint';
export * from './NitroRectangle';
export * from './NitroRenderTexture';
export * from './NitroSprite';
export * from './NitroTexture';
export * from './NitroTimer'; export * from './NitroTimer';
export * from './proxy';

View File

@ -0,0 +1,4 @@
import { Application } from '@pixi/app';
export class PixiApplicationProxy extends Application
{}

View File

@ -0,0 +1,4 @@
import { InteractionEvent } from '@pixi/interaction';
export class PixiInteractionEventProxy extends InteractionEvent
{}

View File

@ -0,0 +1,4 @@
import { Loader } from '@pixi/loaders';
export class PixiLoaderProxy extends Loader
{}

View File

@ -0,0 +1,12 @@
export * from './INitroPoint';
export * from './NitroAdjustmentFilter';
export * from './NitroContainer';
export * from './NitroFilter';
export * from './NitroPoint';
export * from './NitroRectangle';
export * from './NitroRenderTexture';
export * from './NitroSprite';
export * from './NitroTexture';
export * from './PixiApplicationProxy';
export * from './PixiInteractionEventProxy';
export * from './PixiLoaderProxy';