소스 검색

added null filter

ncannasse 6 년 전
부모
커밋
3bcae0263a
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  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;
+	}
+
+}