mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Remove more unnecessary changes
This commit is contained in:
@ -1,8 +1,6 @@
|
||||
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using osu.Framework.Input;
|
||||
using osu.Game.Rulesets.Objects;
|
||||
|
||||
namespace osu.Game.Rulesets.Edit.Tools
|
||||
@ -10,15 +8,10 @@ namespace osu.Game.Rulesets.Edit.Tools
|
||||
public class HitObjectCompositionTool<T> : ICompositionTool
|
||||
where T : HitObject
|
||||
{
|
||||
public string Name { get; } = typeof(T).Name;
|
||||
|
||||
public Func<InputState, MouseDownEventArgs, bool> OnMouseDown;
|
||||
public Func<InputState, MouseDownEventArgs, bool> OnMouseUp;
|
||||
public Func<InputState, MouseDownEventArgs, bool> OnDragStart;
|
||||
public Func<InputState, MouseDownEventArgs, bool> OnDragRequested;
|
||||
public Func<InputState, MouseDownEventArgs, bool> OnDragEnd;
|
||||
public string Name { get; }
|
||||
|
||||
public HitObjectCompositionTool()
|
||||
: this(typeof(T).Name)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user