Files
StoneRed.LogicSimulator/StoneRed.LogicSimulator/Simulation/LogicGates/Interfaces/IInteractable.cs
T
2023-07-26 19:36:42 +02:00

10 lines
319 B
C#

using MonoGame.Extended.Input;
namespace StoneRed.LogicSimulator.Simulation.LogicGates.Interfaces;
internal interface IInteractable
{
public string Info { get; }
public void OnInteraction(MouseStateExtended mouseState, MouseStateExtended previousMouseState, KeyboardStateExtended keyboardStateExtended);
}