diff --git a/source/Cosmos.System2/Graphics/ColorOrder.cs b/source/Cosmos.System2/Graphics/ColorOrder.cs new file mode 100644 index 000000000..c42593728 --- /dev/null +++ b/source/Cosmos.System2/Graphics/ColorOrder.cs @@ -0,0 +1,10 @@ +namespace Cosmos.System.Graphics +{ + /// + /// Describes the order in which the colors are stored in each pixel of an image + /// + public enum ColorOrder + { + RGB, BGR + } +}