15 lines
243 B
Text
15 lines
243 B
Text
|
#JSGF V1.0;
|
||
|
|
||
|
grammar button;
|
||
|
|
||
|
public <final_rule> = <rotation> | <movement>;
|
||
|
|
||
|
<rotation> = turn <direction>;
|
||
|
|
||
|
<movement> = <intent> <action> ;
|
||
|
|
||
|
<direction> = ( left | right);
|
||
|
|
||
|
<intent> = ( enable | disable);
|
||
|
|
||
|
<action> = ( walking | sprinting);
|