add NewProjectMenu for create, save, open

This commit is contained in:
scawful
2024-07-13 18:54:51 -04:00
parent 0d551722f7
commit 7021b64c80
3 changed files with 41 additions and 6 deletions

View File

@@ -37,11 +37,9 @@ struct Project {
* @return An absl::Status indicating the success or failure of the project
* creation.
*/
absl::Status Create(const std::string &project_name,
const std::string &project_path) {
absl::Status Create(const std::string &project_name) {
name = project_name;
filepath = project_path;
return absl::OkStatus();
}