mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
36 lines
No EOL
965 B
C#
36 lines
No EOL
965 B
C#
namespace Server.Targeting
|
|
{
|
|
public class StaticTarget : IPoint3D
|
|
{
|
|
private Point3D m_Location;
|
|
private readonly int m_ItemID;
|
|
|
|
public StaticTarget(Point3D location, int itemID)
|
|
{
|
|
m_Location = location;
|
|
m_ItemID = itemID & TileData.MaxItemValue;
|
|
m_Location.Z += TileData.ItemTable[m_ItemID].CalcHeight;
|
|
}
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public Point3D Location => m_Location;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public string Name => TileData.ItemTable[m_ItemID].Name;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public TileFlag Flags => TileData.ItemTable[m_ItemID].Flags;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public int X => m_Location.X;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public int Y => m_Location.Y;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public int Z => m_Location.Z;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public int ItemID => m_ItemID;
|
|
}
|
|
} |