001    package com.mentata.examples.gospel;
002    
003    // import necessary classes
004    import com.mentata.l3d.L3DContext;
005    import com.mentata.l3d.L3DException;
006    
007    /**
008    * An American casualty from the invasion of Iraq in 2003.
009    */
010    public class casualty extends com.mentata.examples.casualty {
011    
012            /**
013            * Constructs an empty template.
014            *
015            * @param context a containing SG8 context
016            */
017            public casualty(L3DContext context)
018                    throws L3DException {
019    
020                    // pass the context up the constructor chain
021                    super(context);
022            }
023    }