mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
17 lines
462 B
C#
17 lines
462 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Input;
|
|
using System;
|
|
|
|
namespace osu.Game.Rulesets.Edit.Tools
|
|
{
|
|
public interface ICompositionTool
|
|
{
|
|
string Name { get; }
|
|
|
|
Action<InputState, MouseDownEventArgs, bool> OnMouseDown { get; }
|
|
Action<InputState, MouseDownEventArgs, bool> OnMouseUp { get; }
|
|
}
|
|
}
|