-
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.
* Create LICENSE.md (#5) (#6) * refactor (#7) * Add readmes (#8) * readmes * Update README.md * Update README.md * Update README.md * Update README.md * Console app (#10) * remove debug output * add help and basic parameter support
- Loading branch information
Showing
5 changed files
with
75 additions
and
20 deletions.
There are no files selected for viewing
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,7 @@ | ||
def PrintHelp(): | ||
print ("Help menu for MegamanRandomizer:\n\n" + | ||
"-i [filePath]:\t Set a specific input file path. Default: ./Mega Man (USA).nes\n" + | ||
"-o [filePath]:\t Set a specific output file path. Default: ./MMRando.nes\n" + | ||
"\nRandomizer Options:\n" + | ||
"-w:\t Do NOT randomize weapon drops. Default: Weapons WILL get randomized\n" + | ||
"-p:\t Do NOT randomize pallete drops. Default: Palletes WILL get randomized\n") |