Renderer/src/main/java/electrosphere/data/common/CommonEntityLoader.java
austin 7f33ba6348
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
moving data classes around
2025-05-11 16:32:37 -04:00

37 lines
672 B
Java

package electrosphere.data.common;
import java.util.List;
/**
* A recursive file structure for loading types of entities
*/
public class CommonEntityLoader {
/**
* The entities in this file
*/
List<CommonEntityType> objects;
/**
* All child files of this one
*/
List<String> files;
/**
* Gets the entities stored in this file
* @return The list of entities
*/
public List<CommonEntityType> getEntities(){
return objects;
}
/**
* Gets all child files of this one
* @return The list of all child files
*/
public List<String> getFiles(){
return files;
}
}