DarkflameServer/dCommon/BinaryPathFinder.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

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