Files
Da-Deep-Search/Searchbar.h
2025-03-26 21:25:50 +02:00

21 lines
341 B
C++

#pragma once
#include <iostream>
#include <SFML/Graphics.hpp>
using namespace std;
using namespace sf;
class Searchbar
{
private:
Font font;
Text search_bar_text;
RectangleShape background;
public:
Searchbar();
void update(RenderWindow& window, wstring& search_bar_string);
void draw(RenderWindow& window);
};