'''Enemy Level Control Class \tUsed for adjusting enemy levels, based on how well the player is doing \tagainst designer expectations for this map. Normally to be instantiated \tduring map creation, all further enemies created can have their level \tadjusted according to how well the player was doing in the moment of the \tcontrol creation. Syntax for creation is: \t\tlvl_control= LevelFuncs.EnemyLevelControl (expected_player_lvl_min, expected_player_lvl_max) \tthen later replace calls like... \t\tenemy.Level= 9 \twith \t\tenemy.Level= lvl_control.GiveLevel (8, 10) \t'''