ncannasse 6 anni fa
parent
commit
3bcae0263a
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  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;
+	}
+
+}