package edu.stanford.rsl.conrad.utils.parsers;
import edu.stanford.rsl.conrad.rendering.AbstractScene;
/**
* Interface for parsers that convert configuration files to a scene
* @author Rotimi .X. Ojo
*
*/
public interface SceneFileParser {
public abstract AbstractScene getScene();
}
/*
* Copyright (C) 2010-2014 Rotimi X Ojo
* CONRAD is developed as an Open Source project under the GNU General Public License (GPL).
*/