Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
Xferno2 edited this page Jun 28, 2017 · 16 revisions

Welcome to the CSharpOsu how to use.

Directions of use

There are 3 ways to add this library to your project:

  1. To use this library you must add a reference to the DLL file in your project (Project -> Add Reference -> Browse) and search for CSharpOsu.dll (can be found in the Debug folder of this project) and add it to your project.

  2. To compile the DLL just open CsharpOsu.sln and just build the project. You will get your DLL in the debug folder.

  3. Use Nuget to get the library.

Nuget

Getting started

osu!Api key

Navigate to osu!APi and get your key from there.

Start writing code

Open up your C# compiler (suggested: Visual Studio) and type this:

OsuClient osu = new OsuClient("x"); // x = Api key

This will be the base for using this library.

Clone this wiki locally