You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
857 B
33 lines
857 B
#if 0
|
|
//--------------------------------------------//
|
|
// 本文件为自动生成,请勿编辑 //
|
|
// thanks to 最萌小汐 //
|
|
//--------------------------------------------//
|
|
#endif
|
|
#ifdef USE_BJ_ANTI_LEAK
|
|
#ifndef YDWEGetUnitsInRectOfPlayerNullIncluded
|
|
#define YDWEGetUnitsInRectOfPlayerNullIncluded
|
|
|
|
|
|
library YDWEGetUnitsInRectOfPlayerNull
|
|
|
|
globals
|
|
#ifndef YDWE_NNULLTEMPGROUP_DEFVAR
|
|
#define YDWE_NNULLTEMPGROUP_DEFVAR
|
|
group yd_NullTempGroup
|
|
#endif
|
|
endglobals
|
|
|
|
function YDWEGetUnitsInRectOfPlayerNull takes rect r, player whichPlayer returns group
|
|
local group g = CreateGroup()
|
|
set bj_groupEnumOwningPlayer = whichPlayer
|
|
call GroupEnumUnitsInRect(g, r, filterGetUnitsInRectOfPlayer)
|
|
set yd_NullTempGroup = g
|
|
set g = null
|
|
return yd_NullTempGroup
|
|
endfunction
|
|
|
|
endlibrary
|
|
|
|
#endif
|
|
#endif
|
|
|