13 lines
164 B
C#
13 lines
164 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace RuntimeGizmos
|
||
|
{
|
||
|
public class TargetInfo
|
||
|
{
|
||
|
public Vector3 centerPivotPoint;
|
||
|
|
||
|
public Vector3 previousPosition;
|
||
|
}
|
||
|
}
|