Add basic online API support.

This commit is contained in:
Dean Herbert
2016-08-31 19:49:34 +09:00
parent 6a588301ba
commit 8870935a4b
14 changed files with 819 additions and 4 deletions

View File

@ -2,6 +2,7 @@
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Game.Online.API;
namespace osu.Game.Configuration
{
@ -12,6 +13,10 @@ namespace osu.Game.Configuration
Set(OsuConfig.Width, 1366);
Set(OsuConfig.Height, 768);
Set(OsuConfig.MouseSensitivity, 1.0);
Set(OsuConfig.Username, string.Empty);
Set(OsuConfig.Password, string.Empty);
Set(OsuConfig.Token, string.Empty);
}
}
@ -20,5 +25,8 @@ namespace osu.Game.Configuration
Width,
Height,
MouseSensitivity,
Username,
Password,
Token
}
}