Drop old PeepAnimationData unit

This commit is contained in:
Aaron van Geffen 2024-12-03 21:14:26 +01:00
parent b0da41fef5
commit e885b3616b
4 changed files with 0 additions and 1041 deletions

View file

@ -56,7 +56,6 @@
#include "object/ObjectRepository.h"
#include "paint/Painter.h"
#include "park/ParkFile.h"
#include "peep/PeepAnimationData.h"
#include "platform/Crash.h"
#include "platform/Platform.h"
#include "profiling/Profiling.h"
@ -1016,7 +1015,6 @@ namespace OpenRCT2
GfxLoadG2();
GfxLoadCsg();
FontSpriteInitialiseCharacters();
inferMaxPeepSpriteDimensions();
return true;
}

View file

@ -393,7 +393,6 @@
<ClInclude Include="park\ParkFile.h" />
<ClInclude Include="peep\Guest.h" />
<ClInclude Include="peep\GuestPathfinding.h" />
<ClInclude Include="peep\PeepAnimationData.h" />
<ClInclude Include="peep\PeepAnimations.h" />
<ClInclude Include="peep\PeepSpriteIds.h" />
<ClInclude Include="peep\PeepThoughts.h" />
@ -1016,7 +1015,6 @@
<ClCompile Include="park\Legacy.cpp" />
<ClCompile Include="park\ParkFile.cpp" />
<ClCompile Include="peep\GuestPathfinding.cpp" />
<ClCompile Include="peep\PeepAnimationData.cpp" />
<ClCompile Include="peep\PeepAnimations.cpp" />
<ClCompile Include="peep\PeepThoughts.cpp" />
<ClCompile Include="peep\RideUseSystem.cpp" />

File diff suppressed because it is too large Load diff

View file

@ -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