r2mods/ilspy_dump/ror2_csproj/RoR2.UI/MPInputSource.cs

38 lines
621 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
using System;
using Rewired.UI;
using UnityEngine;
namespace RoR2.UI;
public class MPInputSource : IMouseInputSource
{
public int playerId { get; }
public bool enabled { get; }
public bool locked { get; }
public int buttonCount { get; }
public Vector2 screenPosition { get; }
public Vector2 screenPositionDelta { get; }
public Vector2 wheelDelta { get; }
public bool GetButtonDown(int button)
{
throw new NotImplementedException();
}
public bool GetButtonUp(int button)
{
throw new NotImplementedException();
}
public bool GetButton(int button)
{
throw new NotImplementedException();
}
}