19 lines
303 B
C#
19 lines
303 B
C#
using UnityEngine;
|
|
|
|
namespace UHFPS.Runtime
|
|
{
|
|
public interface IOnDragStart
|
|
{
|
|
void OnDragStart();
|
|
}
|
|
|
|
public interface IOnDragEnd
|
|
{
|
|
void OnDragEnd();
|
|
}
|
|
|
|
public interface IOnDragUpdate
|
|
{
|
|
void OnDragUpdate(Vector3 velocity);
|
|
}
|
|
} |