Skip to content

Commit

Permalink
Fix cloth methods on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
markatk committed Dec 15, 2018
1 parent 90d66c1 commit dffeb09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Entities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ namespace rage
virtual void StopAnimation() = 0;

virtual const clothData_t& GetClothes(uint8_t id) = 0;
virtual void SetClothes(uint8_t id, const clothData_t& clothes) = 0;
virtual void SetClothes(uint8_t id, const clothData_t clothes) = 0;

virtual void SetClothes(const std::vector<std::pair<uint8_t, const clothData_t>>& clothes) = 0;
virtual void SetClothes(const std::vector<std::pair<uint8_t, const clothData_t>> clothes) = 0;

virtual const propData_t& GetProp(uint8_t id) = 0;
virtual void SetProp(uint8_t id, const propData_t prop) = 0;

virtual void SetProp(const std::vector<std::pair<uint8_t, const propData_t>>& clothes) = 0;
virtual void SetProp(const std::vector<std::pair<uint8_t, const propData_t>> clothes) = 0;

virtual void SetCustomization(bool gender,
const rage::headBlend_t& headBlend,
Expand Down

0 comments on commit dffeb09

Please sign in to comment.