mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +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;
|
|
}
|
|
}
|
|
}
|