mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
9655f0ee45
fix compile issues
16 lines
255 B
C++
16 lines
255 B
C++
#pragma once
|
|
|
|
#ifndef BINARYPATHFINDER_H
|
|
#define BINARYPATHFINDER_H
|
|
|
|
#include <filesystem>
|
|
|
|
class BinaryPathFinder {
|
|
private:
|
|
static std::filesystem::path binaryDir;
|
|
public:
|
|
static std::filesystem::path GetBinaryDir();
|
|
};
|
|
|
|
#endif //!BINARYPATHFINDER_H
|