mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-14 22:50:28 +01:00
8e83ce6464
also a few small performance improvements
10 lines
224 B
C++
10 lines
224 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <fstream>
|
|
|
|
std::string read_setting(const std::string &name, std::istream &is);
|
|
|
|
std::string read_setting_default(const std::string &name, std::istream &is,
|
|
const std::string &def);
|