Files
grafikaKBT/Physics.h
2026-02-02 00:33:08 +01:00

9 lines
335 B
C++

#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);