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:
10
Editor/src/Project.h
Normal file
10
Editor/src/Project.h
Normal 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;
|
||||
|
||||
};
|
Reference in New Issue
Block a user