mirror of
https://github.com/ppy/osu.git
synced 2026-05-17 00:23:24 +08:00
20 lines
576 B
C#
20 lines
576 B
C#
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Rulesets.UI;
|
|
using Symcol.Rulesets.Core.VectorVideos;
|
|
|
|
namespace Symcol.Rulesets.Core
|
|
{
|
|
public class SymcolInputManager<T> : RulesetInputManager<T>
|
|
where T : struct
|
|
{
|
|
protected virtual bool VectorVideo => false;
|
|
|
|
public SymcolInputManager(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique) : base(ruleset, variant, unique)
|
|
{
|
|
Child = new VectorVideo();
|
|
}
|
|
}
|
|
}
|