mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
Drop old PeepAnimationData unit
This commit is contained in:
parent
b0da41fef5
commit
e885b3616b
4 changed files with 0 additions and 1041 deletions
|
@ -56,7 +56,6 @@
|
||||||
#include "object/ObjectRepository.h"
|
#include "object/ObjectRepository.h"
|
||||||
#include "paint/Painter.h"
|
#include "paint/Painter.h"
|
||||||
#include "park/ParkFile.h"
|
#include "park/ParkFile.h"
|
||||||
#include "peep/PeepAnimationData.h"
|
|
||||||
#include "platform/Crash.h"
|
#include "platform/Crash.h"
|
||||||
#include "platform/Platform.h"
|
#include "platform/Platform.h"
|
||||||
#include "profiling/Profiling.h"
|
#include "profiling/Profiling.h"
|
||||||
|
@ -1016,7 +1015,6 @@ namespace OpenRCT2
|
||||||
GfxLoadG2();
|
GfxLoadG2();
|
||||||
GfxLoadCsg();
|
GfxLoadCsg();
|
||||||
FontSpriteInitialiseCharacters();
|
FontSpriteInitialiseCharacters();
|
||||||
inferMaxPeepSpriteDimensions();
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -393,7 +393,6 @@
|
||||||
<ClInclude Include="park\ParkFile.h" />
|
<ClInclude Include="park\ParkFile.h" />
|
||||||
<ClInclude Include="peep\Guest.h" />
|
<ClInclude Include="peep\Guest.h" />
|
||||||
<ClInclude Include="peep\GuestPathfinding.h" />
|
<ClInclude Include="peep\GuestPathfinding.h" />
|
||||||
<ClInclude Include="peep\PeepAnimationData.h" />
|
|
||||||
<ClInclude Include="peep\PeepAnimations.h" />
|
<ClInclude Include="peep\PeepAnimations.h" />
|
||||||
<ClInclude Include="peep\PeepSpriteIds.h" />
|
<ClInclude Include="peep\PeepSpriteIds.h" />
|
||||||
<ClInclude Include="peep\PeepThoughts.h" />
|
<ClInclude Include="peep\PeepThoughts.h" />
|
||||||
|
@ -1016,7 +1015,6 @@
|
||||||
<ClCompile Include="park\Legacy.cpp" />
|
<ClCompile Include="park\Legacy.cpp" />
|
||||||
<ClCompile Include="park\ParkFile.cpp" />
|
<ClCompile Include="park\ParkFile.cpp" />
|
||||||
<ClCompile Include="peep\GuestPathfinding.cpp" />
|
<ClCompile Include="peep\GuestPathfinding.cpp" />
|
||||||
<ClCompile Include="peep\PeepAnimationData.cpp" />
|
|
||||||
<ClCompile Include="peep\PeepAnimations.cpp" />
|
<ClCompile Include="peep\PeepAnimations.cpp" />
|
||||||
<ClCompile Include="peep\PeepThoughts.cpp" />
|
<ClCompile Include="peep\PeepThoughts.cpp" />
|
||||||
<ClCompile Include="peep\RideUseSystem.cpp" />
|
<ClCompile Include="peep\RideUseSystem.cpp" />
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,24 +0,0 @@
|
||||||
/*****************************************************************************
|
|
||||||
* Copyright (c) 2014-2024 OpenRCT2 developers
|
|
||||||
*
|
|
||||||
* For a complete list of all authors, please refer to contributors.md
|
|
||||||
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
||||||
*
|
|
||||||
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "../core/EnumUtils.hpp"
|
|
||||||
#include "../entity/Peep.h"
|
|
||||||
#include "PeepAnimations.h"
|
|
||||||
|
|
||||||
namespace OpenRCT2
|
|
||||||
{
|
|
||||||
const PeepAnimation& GetPeepAnimation(
|
|
||||||
PeepAnimationGroup spriteType, PeepAnimationType actionAnimationGroup = PeepAnimationType::Walking);
|
|
||||||
const SpriteBounds& GetSpriteBounds(
|
|
||||||
PeepAnimationGroup spriteType, PeepAnimationType actionAnimationGroup = PeepAnimationType::Walking);
|
|
||||||
|
|
||||||
void inferMaxPeepSpriteDimensions();
|
|
||||||
} // namespace OpenRCT2
|
|
Loading…
Reference in a new issue