Switch-Toolbox/Switch_Toolbox_Library/Generics/Texture/ImageParameters.cs

17 lines
367 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
public class ImageParameters
{
//Flip the image on the Y axis
public bool FlipY { get; set; }
//Dont swap the red and green channels
public bool DontSwapRG { get; set; }
}
}