-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPaths.cpp
More file actions
29 lines (17 loc) · 1 KB
/
Paths.cpp
File metadata and controls
29 lines (17 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "Paths.h"
namespace Path {
const LPCWSTR block = L"GameProject/Graphicss/block.png";
const LPCWSTR character = L"GameProject/Graphicss/character.png";
const LPCWSTR cloud = L"GameProject/Graphicss/Cloud.png";
const LPCWSTR savesDirectory = L"GameProject/Saves/";
const LPCWSTR background = L"GameProject/Graphicss/Background.png";
const LPCWSTR backgroundBoard = L"GameProject/Graphicss/BackGroundBoard.png";
const LPCWSTR buttonPlay = L"GameProject/Graphicss/ButtonPlay.png";
const LPCWSTR buttonPlayClicked = L"GameProject/Graphicss/ButtonPlayW.png";
const LPCWSTR buttonLoad = L"GameProject/Graphicss/ButtonLoad.png";
const LPCWSTR buttonLoadClicked = L"GameProject/Graphicss/ButtonLoadW.png";
const LPCWSTR buttonInfo = L"GameProject/Graphicss/ButtonInfo.png";
const LPCWSTR buttonInfoClicked = L"GameProject/Graphicss/ButtonInfoW.png";
const LPCWSTR bigPaperSheet = L"GameProject/Graphicss/BigPaperSheet.png";
const LPCWSTR smallPaperSheet = L"GameProject/Graphicss/SmallPaperSheet.png";
}