A game framework written with osu! in mind.
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 16 lines 430 B view raw
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 4using JetBrains.Annotations; 5using osu.Framework.Input.States; 6 7namespace osu.Framework.Input.Events 8{ 9 public class MidiUpEvent : MidiEvent 10 { 11 public MidiUpEvent([NotNull] InputState state, MidiKey key) 12 : base(state, key, 0) 13 { 14 } 15 } 16}