mirror of https://github.com/pret/pokecrystal.git
saner import syntax in preprocessor
This commit is contained in:
parent
a8811247b0
commit
3f95529102
|
@ -3,20 +3,22 @@
|
|||
|
||||
import sys
|
||||
|
||||
from extras.crystal import command_classes, \
|
||||
Warp, \
|
||||
XYTrigger, \
|
||||
Signpost, \
|
||||
PeopleEvent, \
|
||||
DataByteWordMacro, \
|
||||
PointerLabelBeforeBank, \
|
||||
PointerLabelAfterBank, \
|
||||
MoneyByteParam, \
|
||||
ItemFragment, \
|
||||
TextEndingCommand, \
|
||||
text_command_classes, \
|
||||
movement_command_classes, \
|
||||
from extras.crystal import (
|
||||
command_classes,
|
||||
Warp,
|
||||
XYTrigger,
|
||||
Signpost,
|
||||
PeopleEvent,
|
||||
DataByteWordMacro,
|
||||
PointerLabelBeforeBank,
|
||||
PointerLabelAfterBank,
|
||||
MoneyByteParam,
|
||||
ItemFragment,
|
||||
TextEndingCommand,
|
||||
text_command_classes,
|
||||
movement_command_classes,
|
||||
music_classes
|
||||
)
|
||||
|
||||
macros = command_classes + \
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue