Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 11 additions & 11 deletions RTEA.vcxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Source/Lua/LuaBindingsActivities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ LuaBindingRegisterFunctionDefinitionForType(ActivityLuaBindings, Activity) {
.property("HumanCount", &Activity::GetHumanCount)
.property("TeamCount", &Activity::GetTeamCount)
.property("Difficulty", &Activity::GetDifficulty, &Activity::SetDifficulty)
.property("CraftsOrbitAtTheEdge", &Activity::GetCraftOrbitAtTheEdge, &Activity::SetCraftOrbitAtTheEdge)

.def("DeactivatePlayer", &Activity::DeactivatePlayer)
.def("PlayerActive", &Activity::PlayerActive)
Expand Down Expand Up @@ -118,7 +119,6 @@ LuaBindingRegisterFunctionDefinitionForType(ActivityLuaBindings, GameActivity) {
.property("CPUTeam", &GameActivity::GetCPUTeam, &GameActivity::SetCPUTeam)
.property("DeliveryDelay", &GameActivity::GetDeliveryDelay, &GameActivity::SetDeliveryDelay)
.property("BuyMenuEnabled", &GameActivity::GetBuyMenuEnabled, &GameActivity::SetBuyMenuEnabled)
.property("CraftsOrbitAtTheEdge", &GameActivity::GetCraftOrbitAtTheEdge, &GameActivity::SetCraftOrbitAtTheEdge)

//.def_readwrite("ActorCursor", &GameActivity::m_ActorCursor)
.def_readwrite("CursorTimer", &GameActivity::m_CursorTimer)
Expand Down
2 changes: 1 addition & 1 deletion Source/Lua/LuaBindingsEntities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "LuaBindingRegisterDefinitions.h"

#include "MovableObject.h"
#include "PieSlice.h"
#include "SoundSet.h"

Expand Down Expand Up @@ -921,7 +922,6 @@ LuaBindingRegisterFunctionDefinitionForType(EntityLuaBindings, MovableObject) {

.property("Material", &MovableObject::GetMaterial)
.property("Mass", &MovableObject::GetMass, &MovableObject::SetMass)
.property("Pos", &MovableObject::GetPos, &MovableObject::SetPos)
.property("Vel", &MovableObject::GetVel, &MovableObject::SetVel)
.property("PrevPos", &MovableObject::GetPrevPos)
.property("PrevVel", &MovableObject::GetPrevVel)
Expand Down
4 changes: 2 additions & 2 deletions Source/Managers/ActivityMan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

#include "MusicMan.h"

#include "zip.h"
#include "unzip.h"
#include "minizip/zip.h"
#include "minizip/unzip.h"

#include "tracy/Tracy.hpp"

Expand Down
4 changes: 2 additions & 2 deletions Source/Menus/SaveLoadMenuGUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

#include <execution>

#include "zip.h"
#include "unzip.h"
#include "minizip/zip.h"
#include "minizip/unzip.h"

using namespace RTE;

Expand Down
2 changes: 1 addition & 1 deletion Source/System/System.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "System.h"

#include "RTETools.h"
#include "unzip.h"
#include "minizip/unzip.h"

#include "RTEError.h"

Expand Down
85 changes: 0 additions & 85 deletions external/include/boost_1_75/boost/assert.hpp

This file was deleted.

93 changes: 0 additions & 93 deletions external/include/boost_1_75/boost/assert/source_location.hpp

This file was deleted.

Loading
Loading