mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 11:15:33 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
class ConsoleSavePath {
|
||||
private:
|
||||
std::wstring path;
|
||||
|
||||
public:
|
||||
ConsoleSavePath(const std::wstring& newPath) { path = newPath; }
|
||||
|
||||
std::wstring getName() const { return path; }
|
||||
|
||||
std::wstring operator+(std::wstring& b) { return path + b; }
|
||||
};
|
||||
Reference in New Issue
Block a user