浏览代码

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);