mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
26 lines
763 B
C#
26 lines
763 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());
|
|
Formats.Add(new XpmImage());
|
|
Formats.Add(new PnmFamilyImage());
|
|
Formats.Add(new DdsImage());
|
|
Formats.Add(new PcxImage());
|
|
}
|
|
|
|
}
|
|
}
|