@awayjs/core
Version:
AwayJS core classes
10 lines • 406 B
TypeScript
import { AssetEvent } from '../events/AssetEvent';
import { IAbstractionPool } from './IAbstractionPool';
import { IAsset } from './IAsset';
export interface IAbstraction extends IAsset {
asset: IAsset;
init(asset: IAsset, pool: IAbstractionPool, useWeak?: boolean): void;
onClear(event: AssetEvent): void;
onInvalidate(event: AssetEvent): void;
}
//# sourceMappingURL=IAbstraction.d.ts.map