public SeString CreateMapLink(uint territoryId, uint mapId, int rawX, int rawY) => SeString.CreateMapLink(territoryId, mapId, rawX, rawY);
public SeString CreateMapLink(uint territoryId, uint mapId, float xCoord, float yCoord, float fudgeFactor = 0.05f) => SeString.CreateMapLink(territoryId, mapId, xCoord, yCoord, fudgeFactor);
public SeString CreateItemLink(Item item, bool isHQ, string displayNameOverride = null) => SeString.CreateItemLink(item, isHQ, displayNameOverride);
public SeString Parse(byte[] bytes) => SeString.Parse(new ReadOnlySpan <byte>(bytes));
public unsafe SeString Parse(ReadOnlySpan <byte> data) => SeString.Parse(data);
public unsafe SeString Parse(byte *ptr, int len) => SeString.Parse(ptr, len);
public SeString CreateMapLink(string placeName, float xCoord, float yCoord, float fudgeFactor = 0.05f) => SeString.CreateMapLink(placeName, xCoord, yCoord, fudgeFactor);