This commit is contained in:
Tommy Parnell
2015-07-04 15:19:26 -04:00
commit 278cec65ec
16 changed files with 869 additions and 0 deletions

18
Readme.md Normal file
View File

@@ -0,0 +1,18 @@
## What is this?
A C# binding against the XVI sync API binding
## How to use?
basically new up a new `LodeStoneAPI();`
You can search for a character using the name/world, and then get the charater data from the id search results. Or you can find the ID by looking at the url of the character profile you are seraching for
```csharp
var api = new LodestoneApi();
var res = api.SearchCharacter("Lucia Yokoyama", "Midgardsormr");
var data = api.GetCharacter(res.Data.First().Id);
var data = api.GetCharacter("8696200");
```