1
0
mirror of synced 2024-11-13 18:50:50 +01:00
Switch-Toolbox/Switch_Toolbox_Library/OpenGL/IPickableObject.cs

19 lines
472 B
C#
Raw Normal View History

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);
void PickRotate(float X, float Y, float Z);
void PickScale(float X, float Y, float Z);
}
}