// =================================================================================================
//
//	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.
//
// =================================================================================================

package starling.assets {

	import openfl.utils.ByteArray;

	import starling.textures.AtfData;
	import starling.textures.Texture;

	/**
	 * @externs
	 * This AssetFactory creates texture assets from ATF files.
	 */
	public class AtfTextureFactory extends AssetFactory
	{
		/** Creates a new instance. */
		public function AtfTextureFactory(){}
	}
	
}