mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 09:48:20 +00:00
16 lines
270 B
C
16 lines
270 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__
|