mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 22:05:10 +00:00
fix indentation, now using tabs
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user