mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:57:25 +08:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.GameModes.Testing;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using OpenTK.Input;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
class TestCaseKeyCounter : TestCase
|
|
{
|
|
public override string Name => @"KeyCounter";
|
|
|
|
public override string Description => @"Tests key counter";
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
Children = new[]
|
|
{
|
|
new KeyCounterCollection
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Anchor = Anchor.Centre,
|
|
IsCounting = true,
|
|
Counters = new KeyCounter[]
|
|
{
|
|
new KeyCounterKeyboard(@"Z", Key.Z),
|
|
new KeyCounterKeyboard(@"X", Key.X),
|
|
new KeyCounterMouse(@"M1", MouseButton.Left),
|
|
new KeyCounterMouse(@"M2", MouseButton.Right),
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|