This file contains hidden or 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
| from os import walk, rename | |
| # set the filenames without the index here | |
| # the index will be added automatically later | |
| # what I'm doing is: 1. make the state, 2. export it and 3. write the corresponding name in notepad | |
| # then simply copy paste there and add the ``"`` for the syntax | |
| names = [ | |
| "Link's House", | |
| "KF From Shop", | |
| "Aqua Escape", |
This file contains hidden or 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
| #ifndef RAINBOW_H | |
| #define RAINBOW_H | |
| #include "ultra64/ultratypes.h" | |
| #include "libc/stdbool.h" | |
| #include "libc/stddef.h" | |
| #include "color.h" | |
| typedef enum ColorState { | |
| STATE_RED_TO_YELLOW, |
NewerOlder