Skip to content

Commit 38f23a1

Browse files
committed
Trying to get Editor to build
1 parent 65c8c38 commit 38f23a1

16 files changed

+633
-2717
lines changed

Editor/GUIEditorLib.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Author(s): Jason Boettcher
77
88

9-
10-
#include <windows.h>
9+
#include <Windows.h>
10+
#include <commdlg.h>
1111
#include <direct.h>
1212
#include "GUIEditorLib.h"
1313

GUIEditor.vcxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,12 @@
142142
<ClInclude Include="Managers\TimerMan.h" />
143143
<ClInclude Include="Managers\UInputMan.h" />
144144
<ClInclude Include="Resources\resource.h" />
145+
<ClInclude Include="System\Constants.h" />
145146
<ClInclude Include="System\ContentFile.h" />
146147
<ClInclude Include="System\Reader.h" />
147148
<ClInclude Include="System\RTEError.h" />
148149
<ClInclude Include="System\Serializable.h" />
150+
<ClInclude Include="System\Singleton.h" />
149151
<ClInclude Include="System\StandardIncludes.h" />
150152
<ClInclude Include="System\Timer.h" />
151153
<ClInclude Include="System\Vector.h" />

GUIEditor.vcxproj.filters

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@
119119
<ClInclude Include="System\RTEError.h">
120120
<Filter>System</Filter>
121121
</ClInclude>
122+
<ClInclude Include="System\Constants.h">
123+
<Filter>System</Filter>
124+
</ClInclude>
125+
<ClInclude Include="System\Singleton.h">
126+
<Filter>System</Filter>
127+
</ClInclude>
122128
</ItemGroup>
123129
<ItemGroup>
124130
<ResourceCompile Include="Resources\Resource.rc">

GUILibrary/LibraryIncludes.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@
2626
#include <cmath>
2727
#include <cassert>
2828
#include <limits>
29+
#include <functional>
2930

3031
#endif

Main.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ extern "C" { FILE __iob_func[3] = { *stdin, *stdout, *stderr }; }
2020

2121
using namespace RTE;
2222

23-
namespace RTE {
24-
25-
TimerMan g_TimerMan;
26-
};
27-
2823
GUIEditorApp g_GUIEditor;
2924

3025
extern HINSTANCE g_hInstance = 0;

0 commit comments

Comments
 (0)