mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-20 06:19:05 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
16 lines
368 B
C#
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; }
|
|
}
|