starling-framework
Version:
A fast, productive library for 2D cross-platform development.
23 lines (20 loc) • 709 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 creates sound assets. */
export class SoundFactory extends AssetFactory
{
/** Creates a new instance. */
public constructor();
}
}
export default starling.assets.SoundFactory;