mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 21:27:23 +08:00
26 lines
613 B
C#
26 lines
613 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Users
|
|
{
|
|
public interface IUser : IHasOnlineID<int>, IEquatable<IUser>
|
|
{
|
|
string Username { get; }
|
|
|
|
CountryCode CountryCode { get; }
|
|
|
|
bool IsBot { get; }
|
|
|
|
bool IEquatable<IUser>.Equals(IUser? other)
|
|
{
|
|
if (other == null)
|
|
return false;
|
|
|
|
return OnlineID == other.OnlineID && Username == other.Username;
|
|
}
|
|
}
|
|
}
|