https://github.com/struct78/battlefield-stats
https://github.com/struct78/battlefield-stats
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/struct78/battlefield-stats
- Owner: struct78
- Created: 2012-11-03T05:42:34.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-11-17T07:28:01.000Z (over 13 years ago)
- Last Synced: 2024-12-28T05:29:53.364Z (over 1 year ago)
- Language: C#
- Size: 383 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BF3Stats
BF3Stats is a .NET wrapper for the Battlefield 3 statistics API on api.bf3stats.com.
## Usage
ApiClient target = new ApiClient
{
Username = "Username",
Platform = Platform.
};
target.GetPlayerStats();
target.GetPlayerStatsComplete += delegate(Player p)
{
player = p;
};