Files
sbox-public/engine/Sandbox.Engine/Systems/Render/ShaderCompile/ShaderCompileOptions.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

16 lines
368 B
C#

namespace Sandbox.Engine.Shaders;
/// <summary>
/// Options used when compiling a shader
/// </summary>
public struct ShaderCompileOptions
{
public bool SingleThreaded { get; set; }
public bool ForceRecompile { get; set; }
/// <summary>
/// Write to console. Used when running from the command line.
/// </summary>
public bool ConsoleOutput { get; set; }
}