Files
Da-Deep-Search/Input_events.h
T
2025-03-31 20:47:48 +03:00

21 lines
433 B
C++

#pragma once
#include <iostream>
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <SFML/Graphics.hpp>
using namespace std;
using namespace sf;
class Input_events
{
private:
public:
Input_events();
void keyboard_event(Event& event, wstring& search_bar_string, bool& start_search);
void mouse_event(Event& event, bool& is_click_pressed, int& scroll_value, RenderWindow& window);
};