mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
429 B
C#
15 lines
429 B
C#
|
using Wabbajack.DTOs.JsonConverters;
|
||
|
using Wabbajack.DTOs.Texture;
|
||
|
|
||
|
namespace Wabbajack.DTOs.Directives
|
||
|
{
|
||
|
[JsonName("TransformedTexture")]
|
||
|
[JsonAlias("TransformedTexture, Wabbajack.Lib")]
|
||
|
public class TransformedTexture : FromArchive
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The file to apply to the source file to patch it
|
||
|
/// </summary>
|
||
|
public ImageState ImageState { get; set; } = new();
|
||
|
}
|
||
|
}
|