An open API service indexing awesome lists of open source software.

https://github.com/struct78/battlefield-stats


https://github.com/struct78/battlefield-stats

Last synced: 7 months ago
JSON representation

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;
};