Jass:EnumUnitsSelected
Aus Mappedia
| Funktion: EnumUnitsSelected | |
|---|---|
| Parameter: | player boolexpr code |
| Rückgabewert: | nothing |
| Autor: | Blizzard |
| Quelle: | Blizzard.j |
| Synchron: | Unbekannt |
Code
function EnumUnitsSelected takes player whichPlayer, boolexpr enumFilter, code enumAction returns nothing local group g = CreateGroup() call SyncSelections() call GroupEnumUnitsSelected(g, whichPlayer, enumFilter) call DestroyBoolExpr(enumFilter) call ForGroup(g, enumAction) call DestroyGroup(g) endfunction
Parameter
| Typ | Name | Beschreibung |
|---|---|---|
| player | whichPlayer | |
| boolexpr | enumFilter | |
| code | enumAction |
