mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/MI-38.git
synced 2026-01-23 23:55:38 +03:00
28 lines
328 B
C#
28 lines
328 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class DragMask : MonoBehaviour
|
|
{
|
|
|
|
|
|
private void OnMouseEnter()
|
|
{
|
|
|
|
}
|
|
public void OnMouseDown()
|
|
{
|
|
|
|
}
|
|
public void OnMouseDrag()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
public void OnMouseUp()
|
|
{
|
|
|
|
}
|
|
}
|