mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-24 22:05:07 +01:00
18 lines
415 B
C++
18 lines
415 B
C++
//
|
|
// Created by Syméon on 13/01/2019.
|
|
//
|
|
|
|
#ifndef FEIS_TOOLBOX_H
|
|
#define FEIS_TOOLBOX_H
|
|
|
|
#include <SFML/Window.hpp>
|
|
#include <filesystem>
|
|
|
|
namespace Toolbox {
|
|
bool isShortcutPressed(std::initializer_list<sf::Keyboard::Key> anyOf, std::initializer_list<sf::Keyboard::Key> allOf);
|
|
void pushNewRecentFile(std::filesystem::path path);
|
|
std::vector<std::string> getRecentFiles();
|
|
}
|
|
|
|
#endif //FEIS_TOOLBOX_H
|