mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
317 B
C#
17 lines
317 B
C#
|
|
using ACE.Server.WorldObjects;
|
||
|
|
|
||
|
|
namespace ACE.Server.Entity
|
||
|
|
{
|
||
|
|
public class TargetDistance
|
||
|
|
{
|
||
|
|
public Creature Target;
|
||
|
|
public float Distance;
|
||
|
|
|
||
|
|
public TargetDistance(Creature target, float distance)
|
||
|
|
{
|
||
|
|
Target = target;
|
||
|
|
Distance = distance;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|