forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptions.cs
More file actions
24 lines (19 loc) · 757 Bytes
/
Options.cs
File metadata and controls
24 lines (19 loc) · 757 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
// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
namespace TwoMGFX
{
public class Options
{
[CommandLineParser.Required]
public string SourceFile;
[CommandLineParser.Required]
public string OutputFile = string.Empty;
[CommandLineParser.ProfileName]
public ShaderProfile Profile = ShaderProfile.OpenGL;
[CommandLineParser.Name("Debug", "\t\t - Include extra debug information in the compiled effect.")]
public bool Debug;
[CommandLineParser.Name("Defines", "\t - Semicolon-delimited define assignments")]
public string Defines;
}
}