summaryrefslogtreecommitdiffstats
path: root/src/tacmap.rs
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2026-05-05 09:12:50 -0400
committerJon Santmyer <jon@jonsantmyer.com>2026-05-05 09:12:50 -0400
commitbe2cf936ca48f3d638c3ef01f4e338dfc904c5e3 (patch)
tree9fbdbfbf3e0d427f3a6c4bd4c74901e421ef0ad6 /src/tacmap.rs
parentb35d6cf47ed154697fb45e10586206295148eb35 (diff)
downloadsystemic4x-be2cf936ca48f3d638c3ef01f4e338dfc904c5e3.tar.gz
systemic4x-be2cf936ca48f3d638c3ef01f4e338dfc904c5e3.tar.bz2
systemic4x-be2cf936ca48f3d638c3ef01f4e338dfc904c5e3.zip
seperate orbit logic from body
Diffstat (limited to 'src/tacmap.rs')
-rw-r--r--src/tacmap.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tacmap.rs b/src/tacmap.rs
index 461d819..222363f 100644
--- a/src/tacmap.rs
+++ b/src/tacmap.rs
@@ -1,5 +1,7 @@
pub mod camera;
pub mod render;
+mod body_render;
+mod orbit_render;
use std::time::Duration;
@@ -14,6 +16,8 @@ use crate::ui;
use crate::wgpuctx::SceneCtx;
use crate::wgpuctx::WgpuCtx;
use render::*;
+use body_render::*;
+use orbit_render::*;
use camera::*;
pub struct TacticalMap