Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Users/IUser.cs
4319 views
// Copyright (c) ppy Pty Ltd <[email protected]>. 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;
        }
    }
}