mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
Rewrite #includes to use explicit subdirectory paths
Co-authored-by: Hirek193 <23196899+Hirek193@users.noreply.github.com>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#include "stdafx.h"
|
||||
#include "moon.h"
|
||||
#include "Globals.h"
|
||||
#include "mtable.h"
|
||||
#include "utilities.h"
|
||||
#include "simulationtime.h"
|
||||
#include "environment/moon.h"
|
||||
#include "utilities/Globals.h"
|
||||
#include "world/mtable.h"
|
||||
#include "utilities/utilities.h"
|
||||
#include "simulation/simulationtime.h"
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
// cSun -- class responsible for dynamic calculation of position and intensity of the Sun,
|
||||
|
||||
@@ -8,9 +8,9 @@ http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "sky.h"
|
||||
#include "Globals.h"
|
||||
#include "MdlMngr.h"
|
||||
#include "environment/sky.h"
|
||||
#include "utilities/Globals.h"
|
||||
#include "model/MdlMngr.h"
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//GLfloat lightPos[4] = {0.0f, 0.0f, 0.0f, 1.0f};
|
||||
|
||||
@@ -10,7 +10,7 @@ http://mozilla.org/MPL/2.0/.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Classes.h"
|
||||
#include "utilities/Classes.h"
|
||||
|
||||
class TSky {
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "skydome.h"
|
||||
#include "color.h"
|
||||
#include "utilities.h"
|
||||
#include "simulationenvironment.h"
|
||||
#include "Globals.h"
|
||||
#include "environment/skydome.h"
|
||||
#include "utilities/color.h"
|
||||
#include "utilities/utilities.h"
|
||||
#include "simulation/simulationenvironment.h"
|
||||
#include "utilities/Globals.h"
|
||||
|
||||
// sky gradient based on "A practical analytic model for daylight"
|
||||
// by A. J. Preetham Peter Shirley Brian Smits (University of Utah)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "stdafx.h"
|
||||
#include "stars.h"
|
||||
#include "Globals.h"
|
||||
#include "MdlMngr.h"
|
||||
#include "environment/stars.h"
|
||||
#include "utilities/Globals.h"
|
||||
#include "model/MdlMngr.h"
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
// cStars -- simple starfield model, simulating appearance of starry sky
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "Classes.h"
|
||||
#include "utilities/Classes.h"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#include "stdafx.h"
|
||||
#include "sun.h"
|
||||
#include "Globals.h"
|
||||
#include "mtable.h"
|
||||
#include "utilities.h"
|
||||
#include "simulationtime.h"
|
||||
#include "environment/sun.h"
|
||||
#include "utilities/Globals.h"
|
||||
#include "world/mtable.h"
|
||||
#include "utilities/utilities.h"
|
||||
#include "simulation/simulationtime.h"
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
// cSun -- class responsible for dynamic calculation of position and intensity of the Sun,
|
||||
|
||||
Reference in New Issue
Block a user