mirror of
https://github.com/Stone-Red-Code/StoneRed.LogicSimulator.git
synced 2026-09-04 23:42:28 +02:00
10 lines
301 B
C#
10 lines
301 B
C#
using MonoGame.Extended.Input;
|
|
|
|
namespace StoneRed.LogicSimulator.Api.Interfaces;
|
|
|
|
internal interface IInteractable
|
|
{
|
|
public string Info { get; }
|
|
|
|
public void OnInteraction(MouseStateExtended mouseState, MouseStateExtended previousMouseState, KeyboardStateExtended keyboardStateExtended);
|
|
} |