1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-08 07:17:01 +09:00
osu-tools/PerformanceCalculator/CommandBase.cs
2018-05-15 16:12:46 +09:00

12 lines
324 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-tools/master/LICENCE
using McMaster.Extensions.CommandLineUtils;
namespace PerformanceCalculator
{
[HelpOption("-?|-h|--help")]
public abstract class CommandBase
{
}
}