// 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.Graphics; namespace osu.Framework.Bindables { /// /// A subclass of specifically for representing the "safe areas" of a device. /// It exists to prevent regular s from being globally cached. /// public class BindableSafeArea : Bindable { public BindableSafeArea(MarginPadding value = default) : base(value) { } protected override Bindable CreateInstance() => new BindableSafeArea(); } }