From 256e9d6432e58433f0897e8c35fcc3ae1d5668ff Mon Sep 17 00:00:00 2001 From: doxoh Date: Sun, 22 Oct 2023 16:29:58 +0200 Subject: [PATCH] fix build --- c-api/cache/CachedPlayer.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/c-api/cache/CachedPlayer.h b/c-api/cache/CachedPlayer.h index da99a82..481f4a7 100644 --- a/c-api/cache/CachedPlayer.h +++ b/c-api/cache/CachedPlayer.h @@ -366,7 +366,10 @@ namespace cache bool SetClothes(uint8_t component, uint16_t drawable, uint8_t texture, uint8_t palette) override { return false; } - std::vector _dlcClothes = {}; + + bool ClearClothes(uint8_t component) override {} + + std::vector _dlcClothes = {}; alt::DlcCloth GetDlcClothes(uint8_t component) const override { if (_dlcClothes.size() <= component) return { 0, 0, 0, 0 }; return _dlcClothes[component];