UNPKG

starling-framework

Version:

A fast, productive library for 2D cross-platform development.

23 lines (20 loc) 737 B
// ================================================================================================= // // 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 creates XML assets, texture atlases and bitmap fonts. */ export class XmlFactory extends AssetFactory { /** Creates a new instance. */ public constructor(); } } export default starling.assets.XmlFactory;