Polyphase Game Engine
Loading...
Searching...
No Matches
GitInitDialog.h
Go to the documentation of this file.
1#pragma once
2
3#if EDITOR
4
5class GitInitDialog
6{
7public:
8 void Open();
9 void Draw();
10
11private:
12 bool mIsOpen = false;
13 bool mJustOpened = false;
14
15 char mProjectPath[512] = {0};
16 char mInitialBranchName[128] = {0};
17 bool mCreateInitialCommit = true;
18};
19
20GitInitDialog* GetGitInitDialog();
21
22#endif