1 /*
2 ===========================================================================
3 blockattack - Block Attack - Rise of the Blocks
4 Copyright (C) 2005-2020 Poul Sander
5 
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 2 of the License, or
9 (at your option) any later version.
10 
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15 
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see http://www.gnu.org/licenses/
18 
19 Source information and contacts persons can be found at
20 http://blockattack.net
21 ===========================================================================
22 */
23 
24 
25 #ifndef MODINFO_HPP
26 #define MODINFO_HPP
27 
28 #include <string>
29 #include <vector>
30 
31 class ModInfo {
32 public:
33 	ModInfo() = default;
34 	void InitModList(const std::vector<std::string>& modlist);
35 	void ParseModFile(const std::string& content);
36 	const std::vector<std::string>& getModList();
37 	const std::vector<std::string>& getModSpriteFiles();
38 private:
39 	std::vector<std::string> mod_list;
40 	std::vector<std::string> sprite_filename_list;
41 };
42 
43 #endif