mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
17 lines
256 B
C#
17 lines
256 B
C#
using UnityEngine;
|
|
|
|
public class Finger : BaseFinger
|
|
{
|
|
public float startTimeAction;
|
|
|
|
public Vector2 oldPosition;
|
|
|
|
public int tapCount;
|
|
|
|
public TouchPhase phase;
|
|
|
|
public EasyTouch.GestureType gesture;
|
|
|
|
public EasyTouch.SwipeDirection oldSwipeType;
|
|
}
|