mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 22:40:27 +00:00
17 lines
369 B
C#
17 lines
369 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Toolbox.Library
|
|||
|
{
|
|||
|
public interface IPickable2DObject
|
|||
|
{
|
|||
|
bool IsHit(float X, float Y);
|
|||
|
bool IsSelected { get; set; }
|
|||
|
bool IsHovered { get; set; }
|
|||
|
void PickTranslate(float X, float Y, float Z);
|
|||
|
}
|
|||
|
}
|