9 lines
135 B
C#
9 lines
135 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
[System.Serializable]
|
|||
|
public struct SpawnPosition
|
|||
|
{
|
|||
|
public Vector3 position;
|
|||
|
public Vector3 rotation;
|
|||
|
}
|