diff options
author | stvnliu@homelab <stvnliu.lab@gmail.com> | 2025-03-20 15:20:36 +0200 |
---|---|---|
committer | stvnliu@homelab <stvnliu.lab@gmail.com> | 2025-03-20 15:20:36 +0200 |
commit | 221434eafec46c6e1974d40f17893fee379cead8 (patch) | |
tree | ceeee167f3dc341b92a10d49664e02894d8813f4 /src/lunar.rs | |
parent | b363b791696a045400a8e1f9fd58637ff7e7f4e2 (diff) | |
download | martian-rescue-rs-221434eafec46c6e1974d40f17893fee379cead8.tar.gz martian-rescue-rs-221434eafec46c6e1974d40f17893fee379cead8.tar.bz2 martian-rescue-rs-221434eafec46c6e1974d40f17893fee379cead8.zip |
refactor: updated project structure, set up PLAN
Diffstat (limited to 'src/lunar.rs')
-rw-r--r-- | src/lunar.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lunar.rs b/src/lunar.rs new file mode 100644 index 0000000..6b853d0 --- /dev/null +++ b/src/lunar.rs @@ -0,0 +1,13 @@ +mod structs; +mod systems; + +pub use { + structs::{ + DestPlanet, + LunarOrbitalData + }, + systems::{ + setup_moon, + update_lunar_transform, + }, +};
\ No newline at end of file |