mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
11 lines
232 B
C#
11 lines
232 B
C#
namespace AssetRipper.Export.Modules.Shaders.UltraShaderConverter.USIL;
|
|
|
|
public class USILInputOutput
|
|
{
|
|
public required string type;
|
|
public required string name;
|
|
public int register;
|
|
public int mask;
|
|
public bool isOutput;
|
|
}
|