rj-action-library/Runtime/Math/Geometry/Ray3.cs

12 lines
127 B
C#
Raw Normal View History

2024-09-14 06:41:52 +00:00
using Godot;
namespace Rokojori
{
public class Ray3
{
public Vector3 offset;
public Vector3 direction;
}
}