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