﻿namespace Oni.Motoko
{
    internal enum TextureFormat
    {
        BGRA4444 = 0,
        BGR555 = 1,
        BGRA5551 = 2,
        RGBA = 7,
        BGR = 8,
        DXT1 = 9
    }
}
