소스 검색

fix typing hole

ncannasse 8 년 전
부모
커밋
e075942885
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hxd/WaitEvent.hx

+ 1 - 1
hxd/WaitEvent.hx

@@ -20,7 +20,7 @@ class WaitEvent {
 		updateList.push(callb);
 	}
 
-	public function remove(callb) {
+	public function remove( callb : Float->Bool ) {
 		for( e in updateList )
 			if( Reflect.compareMethods(e, callb) ) {
 				updateList.remove(e);