blob: 062f3d5e83a868aa71cc3297355b87201cff5dd9 (
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_COMPATIBILITY
};
static bool loadDir(std::filesystem::path p, Simulation& sim, LoadingMode loadMode = LoadingMode::DL_COMPATIBILITY) {
return true;
}
};
}
|