drafts for market system. It would be better if I remove the inbox system and market is still working like shit

This commit is contained in:
ErikasKontenis
2022-04-09 21:31:51 +03:00
parent 396464b940
commit f839f0b637
46 changed files with 5402 additions and 506 deletions

View File

@@ -48,7 +48,7 @@ typedef std::vector<int32_t> IntegerVec;
StringVec explodeString(const std::string& inString, const std::string& separator, int32_t limit = -1);
IntegerVec vectorAtoi(const StringVec& stringVector);
inline bool hasBitSet(uint32_t flag, uint32_t flags) {
constexpr bool hasBitSet(uint32_t flag, uint32_t flags) {
return (flags & flag) != 0;
}