This commit is contained in:
2026-02-16 08:19:26 -08:00
parent 24dc416316
commit 67389d8b13
3 changed files with 19 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
mod bot;
mod graphics;
mod head;
mod surface;
pub mod bot;
pub mod graphics;
pub mod head;
pub mod surface;
// Create Surface
// Create Graphics from map file and with surface as sample

View File

@@ -1,5 +1,6 @@
mod app;
mod file;
mod player;
mod setup;
mod window;

View File

@@ -0,0 +1,14 @@
pub enum PhysicsWorkerInstruction{
SessionInput(SessionInputInstruction),
SessionControl(SessionControlInstruction),
SessionPlayback(SessionPlaybackInstruction),
Render,
Resize(winit::dpi::PhysicalSize<u32>),
ChangeMap(strafesnet_common::map::CompleteMap),
LoadReplay(strafesnet_snf::bot::Segment),
}
pub struct Player{
graphics:strafesnet_roblox_bot_player::graphics::Graphics,
bot:strafesnet_roblox_bot_player::bot::Bot,
}