mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
32 lines
703 B
C#
32 lines
703 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Configuration;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Online.API
|
|
{
|
|
public class DummyAPIAccess : IAPIProvider
|
|
{
|
|
public Bindable<User> LocalUser { get; } = new Bindable<User>(new User
|
|
{
|
|
Username = @"Dummy",
|
|
Id = 1,
|
|
});
|
|
|
|
public bool IsLoggedIn => true;
|
|
|
|
public void Update()
|
|
{
|
|
}
|
|
|
|
public virtual void Queue(APIRequest request)
|
|
{
|
|
}
|
|
|
|
public void Register(IOnlineComponent component)
|
|
{
|
|
}
|
|
}
|
|
}
|