A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4namespace osu.Framework.Bindables
5{
6 public class BindableLong : BindableNumber<long>
7 {
8 public BindableLong(long defaultValue = default)
9 : base(defaultValue)
10 {
11 }
12
13 protected override Bindable<long> CreateInstance() => new BindableLong();
14 }
15}