removed click code

This commit is contained in:
Samuel Walker 2024-04-23 17:18:00 -06:00
parent 2905f18891
commit 84ac4954aa

View File

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