DangerousD/MonogameLibrary/UI/Interfaces/IInteractable.cs

12 lines
271 B
C#

using Microsoft.Xna.Framework.Input;
using System;
using System.Collections.Generic;
using System.Text;
namespace MonogameLibrary.UI.Interfaces
{
interface IInteractable
{
bool InteractUpdate(MouseState mouseState, MouseState prevmouseState);
}
}