mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-14 06:30:27 +01:00
11 lines
172 B
C++
11 lines
172 B
C++
#ifndef _UTIL_H
|
|
#define _UTIL_H
|
|
|
|
#include <string>
|
|
#include <stdexcept>
|
|
#include <fstream>
|
|
|
|
std::string get_setting(std::string name, std::istream &is);
|
|
|
|
#endif // _UTIL_H
|