Merge remote-tracking branch 'origin/master' into deffered_rendering
Conflicts: src/GUI/GameFrame.h src/GameWorld.cpp vs11/Returngeance/Returngeance.vcxproj.filters
This commit is contained in:
+6
-3
@@ -20,6 +20,7 @@
|
||||
#include "Systems/TriggerSystem.h"
|
||||
#include "Systems/TimerSystem.h"
|
||||
#include "Systems/DamageSystem.h"
|
||||
#include "Systems/WheelPairSystem.h"
|
||||
|
||||
#include "Components/Camera.h"
|
||||
#include "Components/DirectionalLight.h"
|
||||
@@ -48,6 +49,7 @@
|
||||
#include "Components/Health.h"
|
||||
#include "Components/Trigger.h"
|
||||
#include "Components/Flag.h"
|
||||
#include "Components/WheelPair.h"
|
||||
|
||||
class GameWorld : public World
|
||||
{
|
||||
@@ -58,9 +60,6 @@ public:
|
||||
|
||||
void Initialize();
|
||||
|
||||
EntityID CreateTank(int playerID);
|
||||
EntityID CreateJeep(int playerID);
|
||||
|
||||
void RegisterSystems() override;
|
||||
void AddSystems() override;
|
||||
void RegisterComponents() override;
|
||||
@@ -72,6 +71,10 @@ private:
|
||||
void BindMouseButton(int button, std::string command, float value);
|
||||
void BindGamepadAxis(Gamepad::Axis axis, std::string command, float value);
|
||||
void BindGamepadButton(Gamepad::Button button, std::string command, float value);
|
||||
|
||||
EntityID CreateTank(int playerID);
|
||||
void AddTankWheelPair(EntityID tankEntity, glm::vec3 position, int axleID, bool steering);
|
||||
EntityID CreateJeep(int playerID);
|
||||
};
|
||||
|
||||
#endif // GameWorld_h__
|
||||
|
||||
Reference in New Issue
Block a user