Files
noggit-red/src/math/coordinates.hpp
2024-09-09 11:54:08 +02:00

14 lines
291 B
C++

// This file is part of Noggit3, licensed under GNU General Public License (version 3).
#pragma once
#include <glm/vec3.hpp>
namespace math
{
void to_client(glm::vec3& vector);
void to_client(float vector[3]);
void to_server(glm::vec3& vector);
void to_server(float vector[3]);
}