Editor console basics and more dependencies

Added basics of an editor console, Added YAML-CPP as a dependency of the editor , Added NativeFileDialog as a dependency
This commit is contained in:
2022-11-05 12:29:50 +01:00
parent b44c88d05c
commit 41d5b87c7b
13 changed files with 143 additions and 8 deletions

10
Editor/src/Project.h Normal file
View File

@ -0,0 +1,10 @@
#pragma once
#include <filesystem>
class Project {
public:
Project(const std::string& name): ProjectName(name){}
void CreateProject(std::filesystem::path path );
private:
std::string ProjectName;
};