package cryodex.modules.starwarslcg;
import cryodex.xml.XMLObject;
import cryodex.xml.XMLUtils.Element;
public class SWLCGOptions implements XMLObject {
public SWLCGOptions() {
}
public SWLCGOptions(Element e) {
if (e != null) {
}
}
@Override
public StringBuilder appendXML(StringBuilder sb) {
return sb;
}
}