changed mouse button

This commit is contained in:
Samuel Walker 2024-04-23 16:04:35 -06:00
parent 2c51afc3a3
commit 2905f18891

View File

@ -11,7 +11,7 @@ int main(){
}
Window* window = new Window(800, 600, "Test Window");
while(!window->closing()){
if(window->mouseDown(0)){
if(window->mouseDown(1)){
std::cout << "mouse button down" << std::endl;
}
window->updateWindow();