1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 06:33:20 +08:00

fix(AudioCheckUtils): add license header

This commit is contained in:
tsrk 2023-08-29 23:27:15 +02:00
parent b3d432b0d5
commit 5ecd5142d8
No known key found for this signature in database
GPG Key ID: EBD46BB3049B56D6

View File

@ -1,3 +1,6 @@
// 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.
using System.Linq;
namespace osu.Game.Rulesets.Edit.Checks.Components
@ -8,4 +11,4 @@ namespace osu.Game.Rulesets.Edit.Checks.Components
public static bool HasAudioExtension(string filename) => AUDIO_EXTENSIONS.Any(filename.ToLowerInvariant().EndsWith);
}
}
}