mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Build Box2D with BuildTool
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user