blob: 34ae1d76932cbb74b740081a4e6123a1c05b0119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include <filesystem>
#include <string>
class Project {
public:
std::filesystem::path mRootPath;
std::string mName;
public:
// Path to a *directory* that contains the project file.
const std::filesystem::path& GetPath() const;
const std::string& GetName() const;
void SetName(std::string name);
};
|