Simplify filenames in game/camera
This commit is contained in:
parent
d88156748f
commit
afdd80f3b3
9 changed files with 13 additions and 13 deletions
|
@ -431,12 +431,12 @@ set(GAME_HEADERS
|
|||
src/engine/game/action/useskill.h
|
||||
src/engine/game/action/wait.h
|
||||
src/engine/game/animationutil.h
|
||||
src/engine/game/camera/animatedcamera.h
|
||||
src/engine/game/camera/animated.h
|
||||
src/engine/game/camera/camera.h
|
||||
src/engine/game/camera/camerastyle.h
|
||||
src/engine/game/camera/dialogcamera.h
|
||||
src/engine/game/camera/dialog.h
|
||||
src/engine/game/camera/firstperson.h
|
||||
src/engine/game/camera/staticcamera.h
|
||||
src/engine/game/camera/static.h
|
||||
src/engine/game/camera/thirdperson.h
|
||||
src/engine/game/character.h
|
||||
src/engine/game/console.h
|
||||
|
@ -534,12 +534,12 @@ set(GAME_HEADERS
|
|||
set(GAME_SOURCES
|
||||
src/engine/game/actionexecutor.cpp
|
||||
src/engine/game/animationutil.cpp
|
||||
src/engine/game/camera/animatedcamera.cpp
|
||||
src/engine/game/camera/animated.cpp
|
||||
src/engine/game/camera/camera.cpp
|
||||
src/engine/game/camera/camerastyle.cpp
|
||||
src/engine/game/camera/dialogcamera.cpp
|
||||
src/engine/game/camera/dialog.cpp
|
||||
src/engine/game/camera/firstperson.cpp
|
||||
src/engine/game/camera/staticcamera.cpp
|
||||
src/engine/game/camera/static.cpp
|
||||
src/engine/game/camera/thirdperson.cpp
|
||||
src/engine/game/combat/combat.cpp
|
||||
src/engine/game/combat/combat_attack.cpp
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "animatedcamera.h"
|
||||
#include "animated.h"
|
||||
|
||||
#include "../../graphics/types.h"
|
||||
#include "../../scene/node/cameranode.h"
|
|
@ -15,7 +15,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "dialogcamera.h"
|
||||
#include "dialog.h"
|
||||
|
||||
#include "../../graphics/types.h"
|
||||
#include "../../scene/node/cameranode.h"
|
|
@ -15,7 +15,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "staticcamera.h"
|
||||
#include "static.h"
|
||||
|
||||
#include "../object/placeablecamera.h"
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
#include "../../gui/control/label.h"
|
||||
#include "../../gui/control/listbox.h"
|
||||
|
||||
#include "../camera/dialogcamera.h"
|
||||
#include "../camera/dialog.h"
|
||||
#include "../object/creature.h"
|
||||
|
||||
#include "conversation.h"
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
#include "../../scene/scenegraph.h"
|
||||
|
||||
#include "../actionexecutor.h"
|
||||
#include "../camera/animatedcamera.h"
|
||||
#include "../camera/dialogcamera.h"
|
||||
#include "../camera/animated.h"
|
||||
#include "../camera/dialog.h"
|
||||
#include "../camera/firstperson.h"
|
||||
#include "../camera/staticcamera.h"
|
||||
#include "../camera/static.h"
|
||||
#include "../camera/thirdperson.h"
|
||||
#include "../map.h"
|
||||
#include "../pathfinder.h"
|
||||
|
|
Loading…
Reference in a new issue