// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE namespace osu.Game.Rulesets.Osu.Objects.Drawables { public interface IRequireTracking { /// /// Whether the is currently being tracked by the user. /// bool Tracking { get; set; } } }