starling-framework
Version:
A fast, productive library for 2D cross-platform development.
24 lines (21 loc) • 837 B
TypeScript
// =================================================================================================
//
// Starling Framework
// Copyright Gamua GmbH. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the accompanying license agreement.
//
// =================================================================================================
import AssetFactory from "./AssetFactory";
declare namespace starling.assets
{
/** This AssetFactory forwards ByteArrays to the AssetManager. It's the fallback when
* no other factory can handle an asset reference (default priority: -100). */
export class ByteArrayFactory extends AssetFactory
{
/** Creates a new instance. */
public constructor();
}
}
export default starling.assets.ByteArrayFactory;