-
-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathCpp2IlRuntimeArgs.cs
More file actions
26 lines (19 loc) · 725 Bytes
/
Cpp2IlRuntimeArgs.cs
File metadata and controls
26 lines (19 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System.Collections.Generic;
using AssetRipper.Primitives;
using Cpp2IL.Core.Api;
namespace Cpp2IL.Core;
public class Cpp2IlRuntimeArgs
{
//To determine easily if this struct is the default one or not.
public bool Valid;
//Core variables
public UnityVersion UnityVersion;
public string PathToAssembly = null!;
public string PathToMetadata = null!;
public string? WasmFrameworkJsFile;
public List<Cpp2IlProcessingLayer> ProcessingLayersToRun = [];
public readonly Dictionary<string, string> ProcessingLayerConfigurationOptions = new();
public IEnumerable<Cpp2IlOutputFormat>? OutputFormats;
public string OutputRootDirectory = null!;
public bool LowMemoryMode;
}