mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
15 lines
170 B
C#
15 lines
170 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class DragBackPoint
|
|
{
|
|
public Vector3 _finalPos;
|
|
|
|
public DragBackPoint(Vector3 pos)
|
|
{
|
|
_finalPos = pos;
|
|
}
|
|
}
|
|
}
|