Explorar el Código

added null filter

ncannasse hace 6 años
padre
commit
3bcae0263a
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      h2d/filter/Nothing.hx

+ 13 - 0
h2d/filter/Nothing.hx

@@ -0,0 +1,13 @@
+package h2d.filter;
+
+class Nothing extends Filter {
+
+	public function new() {
+		super();
+	}
+
+	override function draw( ctx : RenderContext, t : h2d.Tile ) {
+		return t;
+	}
+
+}