9 lines
122 B
C#
9 lines
122 B
C#
namespace UVC.Editor
|
|
{
|
|
public interface ISelectable
|
|
{
|
|
void OnSelect();
|
|
void OnDeselect();
|
|
}
|
|
}
|