mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-10 07:18:28 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
25 lines
490 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|