Skip to content

Commit a633e89

Browse files
committed
Remove dublicated WaveForm.h
1 parent df2fe9d commit a633e89

File tree

7 files changed

+13
-89
lines changed

7 files changed

+13
-89
lines changed

src/utils/xrSE_Factory/xrSE_Factory.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
<ClInclude Include="..\..\Common\object_type_traits.h" />
9898
<ClInclude Include="..\..\Include\xrRender\DrawUtils.h" />
9999
<ClInclude Include="..\..\xrCore\fastdelegate.h" />
100+
<ClInclude Include="..\..\xrEngine\WaveForm.h" />
100101
<ClInclude Include="..\..\xrServerEntities\ai_sounds.h" />
101102
<ClInclude Include="..\..\xrServerEntities\alife_human_brain.h" />
102103
<ClInclude Include="..\..\xrServerEntities\alife_human_brain_inline.h" />
@@ -142,7 +143,6 @@
142143
<ClInclude Include="..\..\xrServerEntities\smart_cast_impl1.h" />
143144
<ClInclude Include="..\..\xrServerEntities\smart_cast_impl2.h" />
144145
<ClInclude Include="..\..\xrServerEntities\specific_character.h" />
145-
<ClInclude Include="..\..\xrServerEntities\WaveForm.h" />
146146
<ClInclude Include="..\..\xrServerEntities\xml_str_id_loader.h" />
147147
<ClInclude Include="..\..\xrServerEntities\xrEProps.h" />
148148
<ClInclude Include="..\..\xrServerEntities\xrMessages.h" />

src/utils/xrSE_Factory/xrSE_Factory.vcxproj.filters

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,9 +360,6 @@
360360
<ClInclude Include="..\..\xrServerEntities\PropertiesListTypes.h">
361361
<Filter>ServerStuff\ServerEntities\editor_properties</Filter>
362362
</ClInclude>
363-
<ClInclude Include="..\..\xrServerEntities\WaveForm.h">
364-
<Filter>ServerStuff\ServerEntities\editor_properties</Filter>
365-
</ClInclude>
366363
<ClInclude Include="..\..\xrServerEntities\xrEProps.h">
367364
<Filter>ServerStuff\ServerEntities\editor_properties</Filter>
368365
</ClInclude>
@@ -402,6 +399,9 @@
402399
<ClInclude Include="..\..\xrServerEntities\alife_movement_manager_holder.h">
403400
<Filter>ServerStuff\ServerEntities\movement_manager_holder</Filter>
404401
</ClInclude>
402+
<ClInclude Include="..\..\xrEngine\WaveForm.h">
403+
<Filter>ServerStuff\ServerEntities\editor_properties</Filter>
404+
</ClInclude>
405405
</ItemGroup>
406406
<ItemGroup>
407407
<ClCompile Include="..\..\xrServerEntities\pch_script.cpp">

src/xrEngine/WaveForm.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#pragma once
2-
#ifndef WAVEFORM_H
3-
#define WAVEFORM_H
2+
#include <math.h>
3+
#include "xrCore/_types.h"
4+
#include "xrCore/math_constants.h"
5+
#include "xrCommon/math_funcs_inline.h"
46

57
#pragma pack(push, 4)
68
struct WaveForm
@@ -68,6 +70,4 @@ struct WaveForm
6870
return true;
6971
}
7072
};
71-
7273
#pragma pack(pop)
73-
#endif

src/xrGame/xrGame.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@
140140
</ItemDefinitionGroup>
141141
<ItemGroup>
142142
<ClInclude Include="$(xrExternals)GameSpy\src\GameSpy\md5.h" />
143+
<ClInclude Include="..\xrEngine\WaveForm.h" />
143144
<ClInclude Include="..\xrServerEntities\ai_sounds.h" />
144145
<ClInclude Include="..\xrServerEntities\alife_human_brain.h" />
145146
<ClInclude Include="..\xrServerEntities\alife_human_brain_inline.h" />
@@ -185,7 +186,6 @@
185186
<ClInclude Include="..\xrServerEntities\smart_cast_impl1.h" />
186187
<ClInclude Include="..\xrServerEntities\smart_cast_impl2.h" />
187188
<ClInclude Include="..\xrServerEntities\specific_character.h" />
188-
<ClInclude Include="..\xrServerEntities\WaveForm.h" />
189189
<ClInclude Include="..\xrServerEntities\xml_str_id_loader.h" />
190190
<ClInclude Include="..\xrServerEntities\xrEProps.h" />
191191
<ClInclude Include="..\xrServerEntities\xrMessages.h" />

src/xrGame/xrGame.vcxproj.filters

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5565,9 +5565,6 @@
55655565
<ClInclude Include="..\xrServerEntities\ItemListTypes.h">
55665566
<Filter>Core\Server\Editor</Filter>
55675567
</ClInclude>
5568-
<ClInclude Include="..\xrServerEntities\WaveForm.h">
5569-
<Filter>Core\Server\Editor</Filter>
5570-
</ClInclude>
55715568
<ClInclude Include="..\xrServerEntities\xrEProps.h">
55725569
<Filter>Core\Server\Editor</Filter>
55735570
</ClInclude>
@@ -6674,6 +6671,9 @@
66746671
<Filter>UI\Common\PDA\FractionWar</Filter>
66756672
</ClInclude>
66766673
<ClInclude Include="game_type.h" />
6674+
<ClInclude Include="..\xrEngine\WaveForm.h">
6675+
<Filter>Core\Server\Editor</Filter>
6676+
</ClInclude>
66776677
</ItemGroup>
66786678
<ItemGroup>
66796679
<ClCompile Include="damage_manager.cpp">

src/xrServerEntities/PropertiesListTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//---------------------------------------------------------------------------
22
#pragma once
33

4-
#include "WaveForm.h"
4+
#include "xrEngine/WaveForm.h"
55
#include "gametype_chooser.h"
66
#include "xrCommon/xr_string.h"
77
#include "xrCommon/xr_vector.h"

src/xrServerEntities/WaveForm.h

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)