module ppsl.glsl.compiler;
import ppsl.compiler;
import ppsl.shader;
public class GlslCompiler : Compiler {
	public override PPSLShader CompileSingle(string PPSLCode) {
		return null;
	}

	public override OutputShader Transpile(PPSLShaderCollection collection) {
		return null;
	}
}