Remove obsolete methods

This commit is contained in:
Aaron van Geffen 2024-04-29 00:08:49 +02:00
parent 53d9ab1547
commit 86d26bcef6
2 changed files with 0 additions and 14 deletions

View File

@ -947,18 +947,6 @@ bool Staff::DoPathFinding()
}
}
uint8_t Staff::GetCostume() const
{
return EnumValue(SpriteType) - EnumValue(PeepSpriteType::EntertainerPanda);
}
void Staff::SetCostume(uint8_t value)
{
auto costume = static_cast<EntertainerCostume>(value);
SpriteType = EntertainerCostumeToSprite(costume);
UpdateAction();
}
void Staff::SetHireDate(int32_t hireDate)
{
HireDate = hireDate;

View File

@ -51,8 +51,6 @@ public:
bool IsLocationInPatrol(const CoordsXY& loc) const;
bool IsLocationOnPatrolEdge(const CoordsXY& loc) const;
bool DoPathFinding();
uint8_t GetCostume() const;
void SetCostume(uint8_t value);
void SetHireDate(int32_t hireDate);
int32_t GetHireDate() const;