mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 06:41:21 +00:00
13 lines
220 B
C#
13 lines
220 B
C#
namespace TargaImagePCL
|
|
{
|
|
public enum TGAPixelFormat
|
|
{
|
|
Undefined,
|
|
Grayscale_8bpp,
|
|
RGB555_16bpp,
|
|
ARGB1555_16bpp,
|
|
RGB_24bpp,
|
|
RGB_32bpp,
|
|
ARGB_32bpp
|
|
}
|
|
}
|