Files
BlenderSharp/BlendFile/DNA/FlipShaderFxData.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

28 lines
850 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
public struct FlipShaderFxData {
public ShaderFxData shaderfx;
public int flag;
public int flipmode;
public ShaderFxData_Runtime runtime;
public FlipShaderFxData(ShaderFxData shaderfx, int flag, int flipmode, ShaderFxData_Runtime runtime) {
this.shaderfx = shaderfx;
this.flag = flag;
this.flipmode = flipmode;
this.runtime = runtime;
}
}
}