Cosmos/source2/Users/Orvid/Orvid.Graphics/ImageFormats/FormatManager.cs
2011-08-08 19:55:53 +00:00

22 lines
589 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Orvid.Graphics.ImageFormats
{
public class FormatManager
{
internal List<ImageFormat> Formats = new List<ImageFormat>();
public FormatManager()
{
Formats.Add(new BmpImage());
Formats.Add(new OIFImage());
Formats.Add(new PngImage());
Formats.Add(new VbpImage());
Formats.Add(new JpegImage());
Formats.Add(new TiffImage());
Formats.Add(new TgaImage());
}
}
}