mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
379 B
C#
15 lines
379 B
C#
|
namespace Wabbajack.DTOs.Texture
|
||
|
{
|
||
|
public class ImageState
|
||
|
{
|
||
|
public int Width { get; set; }
|
||
|
public int Height { get; set; }
|
||
|
public DXGI_FORMAT Format { get; set; }
|
||
|
public PHash PerceptualHash { get; set; }
|
||
|
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return $"ImageState<{Width}, {Height}, {Format}>";
|
||
|
}
|
||
|
}
|
||
|
}
|