1
0
mirror of synced 2024-12-03 19:47:29 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Generics/Texture/ImageParameters.cs

18 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; }
}
}