chore: main cleanup in new files

This commit is contained in:
Pc
2026-02-02 00:33:08 +01:00
parent a3e3c8a955
commit e04fc59eda
13 changed files with 869 additions and 1315 deletions

8
Physics.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <vector>
#include "Global.h"
// Funkcje fizyki
bool CheckFenceCollision(float rXMin, float rXMax, float rZMin, float rZMax, const Plot& plot);
bool CheckAllFencesCollision(float rXMin, float rXMax, float rZMin, float rZMax, const std::vector<Plot>& fences);
void UpdateRover(const std::vector<Plot>& fences);