20 lines
226 B
C#
20 lines
226 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace PhysicsTools
|
|
{
|
|
[Serializable]
|
|
public class PosOri
|
|
{
|
|
public Vector3 pos;
|
|
|
|
public Quaternion rot;
|
|
|
|
public PosOri(Vector3 p, Quaternion q)
|
|
{
|
|
pos = p;
|
|
rot = q;
|
|
}
|
|
}
|
|
}
|