Move catcher movement logic of Catcher to CatcherArea

This commit is contained in:
ekrctb
2021-06-11 15:39:06 +09:00
parent 385554b01a
commit 7f7c2c73e0
4 changed files with 99 additions and 72 deletions

View File

@ -0,0 +1,11 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Rulesets.Catch.UI
{
public enum Direction
{
Right = 1,
Left = -1
}
}