aboutsummaryrefslogtreecommitdiff
path: root/mwe/resource-manager/constants.h
blob: 620ddf32b86cf2f84e102bf41785f6dedf32a561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <string>
namespace crepe {

	class Constants {
	public:
		using FILE_PATH = std::string;


		static const std::string PNG_EXT;
		static const std::string OGG_EXT;
	
	};
}