Polyphase Game Engine
Loading...
Searching...
No Matches
GitCloneDialog.h
Go to the documentation of this file.
1#pragma once
2
3#if EDITOR
4
5#include <string>
6
7class GitCloneDialog
8{
9public:
10 void Open();
11 void Draw();
12
13private:
14 bool mIsOpen = false;
15 bool mJustOpened = false;
16
17 char mUrl[512] = {0};
18 char mDestPath[512] = {0};
19 char mFolderName[256] = {0};
20 char mBranch[128] = {0};
21};
22
23GitCloneDialog* GetGitCloneDialog();
24
25#endif