2025-06-18 12:42:22 -07:00

14 lines
386 B
C#

using AssetRipper.SourceGenerated.Extensions.Enums.Shader;
using AssetRipper.SourceGenerated.Subclasses.PlatformShaderDefines;
namespace AssetRipper.SourceGenerated.Extensions
{
public static class PlatformShaderDefinesExtensions
{
public static GPUPlatform GetSerializationMode(this IPlatformShaderDefines settings)
{
return (GPUPlatform)settings.ShaderPlatform;
}
}
}