blob: 250d100944da8d8185747441a8558dd3975ca64f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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) {
return true;
}
};
}
|