2021-09-27 12:42:46 +00:00
|
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
using Wabbajack.DTOs.Texture;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.DTOs.Directives;
|
|
|
|
|
|
|
|
[JsonName("TransformedTexture")]
|
|
|
|
[JsonAlias("TransformedTexture, Wabbajack.Lib")]
|
|
|
|
public class TransformedTexture : FromArchive
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The file to apply to the source file to patch it
|
|
|
|
/// </summary>
|
|
|
|
public ImageState ImageState { get; set; } = new();
|
2022-10-30 13:16:12 +00:00
|
|
|
public override bool IsDeterministic => false;
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|