JohnCorby 656ff16305 Revert "Reformat"
This reverts commit 7c0ba5597720f963432d8379a236e74f3508d077.
2022-05-22 18:41:34 -07:00

21 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace NewHorizons.Utility.DebugUtilities
{
struct DebugRaycastData
{
public bool hit;
public Vector3 pos;
public Vector3 norm;
public string bodyName;
public string bodyPath;
public GameObject hitObject;
}
}