updated enum annotation to support patching

This commit is contained in:
Peli de Halleux
2016-03-28 22:16:07 -07:00
parent 715de4dff9
commit 664b841b1c
5 changed files with 96 additions and 96 deletions

View File

@ -1,20 +1,20 @@
enum Direction {
//% blockId=right
//% block=right
Right,
//% blockId=left
//% block=left
Left
}
enum LedSpriteProperty {
//% blockId=x
//% block=x
X,
//% blockId=y
//% block=y
Y,
//% blockId=direction
//% block=direction
Direction,
//% blockId=brightness
//% block=brightness
Brightness,
//% blockId=blink
//% block=blink
Blink
}