osu/osu.Game.Rulesets.Taiko/Mods/TaikoModMuted.cs

Failed to ignore revisions in .git-blame-ignore-revs.

15 lines
352 B
C#
Raw Normal View History

2021-07-28 10:21:08 +00:00
// 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.
2021-07-28 13:52:01 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2021-07-28 10:21:08 +00:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Taiko.Objects;
namespace osu.Game.Rulesets.Taiko.Mods
{
public class TaikoModMuted : ModMuted<TaikoHitObject>
{
}
}