Files
sbox-public/engine/Tools/ShaderProc/ShaderDocGen.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

25 lines
490 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Facepunch.ShaderProc
{
class ShaderDoc
{
/// <summary>
/// Extracts the functions that are available in this shader
/// Doesn't extract the comments from it as per valve's suggestion
/// </summary>
public static ShaderDoc GenerateDocumentation( string sourceCode )
{
List<string> functions = new List<string>();
return default;
}
}
}