Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

li223/ShadowSharp

Repository files navigation

ShadowSharp

Simple .Net Wrapper for some of Shadowverse Portal's API Endpoints

Example

namespace Example
{
    class Program
    {
        static async Task Main(string[] args)
        {
            var client = new ShadowSharpClient();
            //Deck code is created via the game
            var data = await client.GetCardDeckAsync("qi7i");
            //Display some data in the Console
            Console.WriteLine($"First 5 Cards: {string.Join(" | ", data.Cards.Take(5).Select(x => $"Name: {x.Name}, Description: {x.Description}"))}");
            Console.ReadKey();
        }
    }
}

About

Simple .Net Wrapper

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages