Jam-Teacher/Content/model/en/grammars/actions.gram

15 lines
243 B
Text
Raw Normal View History

2020-08-03 20:23:02 +00:00
#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);