MCPcopy Create free account
hub / github.com/ParaN3xus/udon-decompiler / CompilationRequest

Class CompilationRequest

tools/Editor/UdonSharpSourceTextCompiler.cs:13–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11using VRC.Udon.Serialization.OdinSerializer;
12
13[Serializable]
14public struct CompilationRequest
15{
16 public string sourceCode;
17 public string className;
18
19 public CompilationRequest(string source, string name)
20 {
21 sourceCode = source;
22 className = name;
23 }
24}
25
26public static class UdonSharpSourceTextCompiler
27{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected