12 lines
271 B
C#
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);
|
|
}
|
|
}
|