mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
18 lines
469 B
C#
18 lines
469 B
C#
namespace BuildTool;
|
|
|
|
class BuildInfo
|
|
{
|
|
public WorkingDirectoryHistory WorkingDirectory;
|
|
public bool ForceRebuild;
|
|
public bool BuildDebug;
|
|
public bool BuildRelease;
|
|
|
|
public BuildInfo(WorkingDirectoryHistory workingDirectory, bool forceRebuild, bool buildDebug, bool buildRelease)
|
|
{
|
|
WorkingDirectory = workingDirectory;
|
|
ForceRebuild = forceRebuild;
|
|
BuildDebug = buildDebug;
|
|
BuildRelease = buildRelease;
|
|
}
|
|
}
|