mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 09:24:39 +01:00
13 lines
255 B
C#
13 lines
255 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class SelectEnemyByEllipse : AvatarAttackTargetSelect
|
|
{
|
|
public float TargetSelectionEccentricity;
|
|
|
|
public SelectEnemyByEllipse()
|
|
{
|
|
selectMethod = AvatarAttackTargetSelectPattern.SelectEnemyByEllipse;
|
|
}
|
|
}
|
|
}
|