9 lines
335 B
C++
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);
|