View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   package cz.cuni.amis.pogamut.udk.t3dgenerator.elements.map;
6   
7   /**
8    *
9    * @author Martin Cerny
10   */
11  public class DrawLightRadiusComponent extends DrawSphereComponent{
12  
13      public DrawLightRadiusComponent(String componentName, String archetypeName, float sphereRadius) {
14          super(componentName, archetypeName, sphereRadius);        
15      }
16      
17  }