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.unreal.t3dgenerator.elements;
6   
7   import cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes.UnrealReference;
8   
9   /**
10   * Interface for any object that can be referenced in T3D.
11   * @author Martin Cerny
12   */
13  public interface IUnrealReferencable {
14      public UnrealReference getReference();
15  }