// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; namespace osu.Framework.Testing.Dependencies { /// /// Used for internal testing purposes. /// public class CachedNullableProvider { [Cached] public int? CachedObject { get; private set; } = 5; public void SetValue(int? value) => CachedObject = value; } }