blob: b0b756f49929f966c259e9454e04ba17406ea6f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <filesystem>
#include "../Simulation.hpp"
namespace OpenVic {
class Dataloader {
public:
enum class LoadingMode {
DL_COMPATABILITY
};
static bool loadDir(std::filesystem::path p, Simulation& sim, LoadingMode loadMode = LoadingMode::DL_COMPATABILITY);
};
}
|