diff options
author | yenatch <yenatch@gmail.com> | 2013-11-07 01:15:20 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-11-07 01:15:20 -0500 |
commit | 2143b5479ea9742226fec4e8be61e49f33cb301c (patch) | |
tree | ca21297f1ce25f757bec841a3e975c91f454de3d /preprocessor.py | |
parent | 6271b619827f1cc32c38b4f4f4480f888ce9894f (diff) |
import some new sound classes from pokemontools
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/preprocessor.py b/preprocessor.py index 5c71fe226..b5f2e3a4a 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -17,6 +17,12 @@ from extras.pokemontools.crystal import ( movement_command_classes, music_classes, effect_classes, + ChannelCommand, + OctaveCommand, +) + +from extras.pokemontools.audio import ( + Note, ) def load_pokecrystal_macros(): @@ -31,6 +37,9 @@ def load_pokecrystal_macros(): Signpost, PeopleEvent, DataByteWordMacro, + ChannelCommand, + OctaveCommand, + Note, ] ourmacros += command_classes |