Files
osu-framework/osu.Framework/Allocation/IDependencyInjectionCandidate.cs
2022-11-26 23:17:29 +09:00

13 lines
415 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.
namespace osu.Framework.Allocation
{
/// <summary>
/// An interface that may be attached to objects to allow them to be used in <see cref="DependencyContainer.Inject{T}"/>.
/// </summary>
public interface IDependencyInjectionCandidate
{
}
}