mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Update proxies
This commit is contained in:
parent
02e11d3dda
commit
46fd61c09c
@ -1,11 +1,3 @@
|
||||
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 './proxy';
|
||||
|
4
src/core/utils/proxy/PixiApplicationProxy.ts
Normal file
4
src/core/utils/proxy/PixiApplicationProxy.ts
Normal file
@ -0,0 +1,4 @@
|
||||
import { Application } from '@pixi/app';
|
||||
|
||||
export class PixiApplicationProxy extends Application
|
||||
{}
|
4
src/core/utils/proxy/PixiInteractionEventProxy.ts
Normal file
4
src/core/utils/proxy/PixiInteractionEventProxy.ts
Normal file
@ -0,0 +1,4 @@
|
||||
import { InteractionEvent } from '@pixi/interaction';
|
||||
|
||||
export class PixiInteractionEventProxy extends InteractionEvent
|
||||
{}
|
4
src/core/utils/proxy/PixiLoaderProxy.ts
Normal file
4
src/core/utils/proxy/PixiLoaderProxy.ts
Normal file
@ -0,0 +1,4 @@
|
||||
import { Loader } from '@pixi/loaders';
|
||||
|
||||
export class PixiLoaderProxy extends Loader
|
||||
{}
|
12
src/core/utils/proxy/index.ts
Normal file
12
src/core/utils/proxy/index.ts
Normal 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';
|
Loading…
Reference in New Issue
Block a user