Skip to content
Snippets Groups Projects
object.jsgf 259 B
Newer Older
  • Learn to ignore specific revisions
  • #JSGF V1.0;
    
    Kai Harmening's avatar
    Kai Harmening committed
    grammar emergencySituation_object;
    
    
    public <emergencySituation> = <objectPhrase>;
    
    <objectPhrase> = <water> | <firstaidkit> | <cellphone> | <nothing>;
    
    Kai Harmening's avatar
    Kai Harmening committed
    <water> = water;
    
    <firstaidkit> = first aid kit;
    
    <cellphone> = cell phone;
    
    <nothing> = nothing;