fix indentation, now using tabs

This commit is contained in:
arthur.jamet
2021-05-21 23:50:54 +02:00
parent 17f0db2bd1
commit dd128b8b97
71 changed files with 1457 additions and 1473 deletions

View File

@@ -9,26 +9,26 @@
bool RAY::Controller::Mouse::isPressed(RAY::Controller::Mouse::Button button)
{
return IsMouseButtonPressed(button);
return IsMouseButtonPressed(button);
}
bool RAY::Controller::Mouse::isDown(RAY::Controller::Mouse::Button button)
{
return IsMouseButtonDown(button);
return IsMouseButtonDown(button);
}
bool RAY::Controller::Mouse::isReleased(RAY::Controller::Mouse::Button button)
{
return IsMouseButtonReleased(button);
return IsMouseButtonReleased(button);
}
bool RAY::Controller::Mouse::isUp(RAY::Controller::Mouse::Button button)
{
return IsMouseButtonUp(button);
return IsMouseButtonUp(button);
}
Vector2 RAY::Controller::Mouse::getCursorPosition(void)
{
return GetMousePosition();
return GetMousePosition();
}