// 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 { /// /// This is used for internal testing purposes. /// internal class CachedStructProvider { [Cached] public Struct CachedObject { get; } = new Struct { Value = 10 }; public struct Struct { public int Value; } } }