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