-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Possible Softlocks with Noise Drops Randomizing (#8)
* Support other bundles and scenario edits * Moved parsed JSON data to bundle class * Clean up Bundle Constants * Set proper types for serialized data * Select folder instead of each bundle * Update README and bump version to 0.4
- Loading branch information
1 parent
a8fe629
commit 65a8f61
Showing
95 changed files
with
35,792 additions
and
2,070 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace NEO_TWEWY_Randomizer | ||
{ | ||
public class BundleSet | ||
{ | ||
public TextBundle TextData { get; set; } = null; | ||
public ScenarioBundle W1D2Scenario { get; set; } = null; | ||
public ScenarioBundle W2D5Scenario { get; set; } = null; | ||
|
||
public bool AreAllBundlesLoaded() | ||
{ | ||
return TextData != null && | ||
W1D2Scenario != null && | ||
W2D5Scenario != null; | ||
} | ||
} | ||
} |
Oops, something went wrong.