-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.h
21 lines (18 loc) · 821 Bytes
/
Config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#include <SFML/Window/WindowStyle.hpp>
namespace Config
{
// Application Data
constexpr const char* AppTitle = "Raining Astolfo";
constexpr int ScreenWidth = 800;
constexpr int ScreenHeight = 600;
constexpr int WindowStyle = sf::Style::Close | sf::Style::Titlebar;
constexpr int FullScreenWindowStyle = sf::Style::Close | sf::Style::Titlebar | sf::Style::Fullscreen;
constexpr float FRAME_RATE = 60.f;
// Resources
constexpr const char* AstolfoImage = "Resources/Images/astolfo.png";
constexpr const char* HahGayAstolfoImage = "Resources/Images/hah-gay.png";
constexpr const char* HeartImage = "Resources/Images/Heart.png";
constexpr const char* EmptyHeartImage = "Resources/Images/Heartless.png";
constexpr const char* ChewyFont = "Resources/Fonts/Chewy-Regular.ttf";
}