mirror of
https://github.com/Drimiteros/Da-Deep-Search.git
synced 2026-02-05 05:28:31 -06:00
21 lines
341 B
C++
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);
|
|
};
|
|
|