16 lines
188 B
Ucode
16 lines
188 B
Ucode
class NPCEnemy_AI extends NPC_AI;
|
|
|
|
function bool SameTeamAs(Controller C)
|
|
{
|
|
if( MonsterController(C) != none)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
}
|