Add initial game code

This commit is contained in:
Aslan 2025-09-12 08:34:06 -04:00
parent f80a60e208
commit 1383997ebf
55 changed files with 1355 additions and 0 deletions

6
scripts/Constants.cs Normal file
View file

@ -0,0 +1,6 @@
public static class Constants
{
public static decimal KM_M = 1000M;
public static decimal AU_M = 149597870700M;
public static decimal LY_M = 9460737937559000M;
}