Move Palpable* to separate files

This commit is contained in:
ekrctb
2020-11-24 19:16:03 +09:00
parent 916a313f19
commit 4f7aa7e541
4 changed files with 57 additions and 45 deletions

View File

@ -0,0 +1,13 @@
// 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.Objects
{
/// <summary>
/// Represents a single object that can be caught by the catcher.
/// </summary>
public abstract class PalpableCatchHitObject : CatchHitObject
{
public override bool CanBePlated => true;
}
}