Conquer Chess
Chess and Starcraft combined
Loading...
Searching...
No Matches
about.h
Go to the documentation of this file.
1#ifndef ABOUT_H
2#define ABOUT_H
3
5
6#include <SFML/System/String.hpp>
7
8#include <vector>
9
11std::wstring get_author_name() noexcept;
12
14std::string get_homepage_url() noexcept;
15
20std::vector<sf::String> get_contributor_names() noexcept;
21
23void test_about();
24
25#endif // ABOUT_H
std::vector< sf::String > get_contributor_names() noexcept
Get the names of the contributors.
Definition about.cpp:15
std::wstring get_author_name() noexcept
Get the name of the author.
Definition about.cpp:5
std::string get_homepage_url() noexcept
Get the URL of the homepage.
Definition about.cpp:10
void test_about()
Test these functions.
Definition about.cpp:23