1 module ppsl;
2 import ppsl.cg;
3 import ppsl.glsl;
4 import ppsl.shader;
5 import ppsl.tokens;
6 import ppsl.parser;
7 import ppsl.compiler;
8 
9 public class PPSL {
10 	private PPSLCompiler target_compiler;
11 	private Compiler compiler;
12 
13 	public this(PPSLCompiler target) {
14 		this.target_compiler = target;
15 	}
16 }