12 lines
127 B
C#
12 lines
127 B
C#
|
using Godot;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class Ray3
|
||
|
{
|
||
|
public Vector3 offset;
|
||
|
public Vector3 direction;
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|