shmodot/scripts/orbits/math/Double2.cs

8 lines
95 B
C#
Raw Normal View History

2022-09-04 12:35:13 +02:00
using Godot;
using System;
public struct Double2
{
public double x;
public double y;
}