mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-17 03:16:34 +00:00
Declare operator in MWState namespace
This commit is contained in:
parent
d756b02d68
commit
c3a5ad4328
1 changed files with 3 additions and 2 deletions
|
@ -15,8 +15,6 @@ namespace MWState
|
||||||
std::filesystem::file_time_type mTimeStamp;
|
std::filesystem::file_time_type mTimeStamp;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool operator<(const Slot& left, const Slot& right);
|
|
||||||
|
|
||||||
std::string_view getFirstGameFile(const std::vector<std::string>& contentFiles);
|
std::string_view getFirstGameFile(const std::vector<std::string>& contentFiles);
|
||||||
|
|
||||||
class Character
|
class Character
|
||||||
|
@ -67,6 +65,9 @@ namespace MWState
|
||||||
|
|
||||||
friend bool operator<(const Character& left, const Character& right);
|
friend bool operator<(const Character& left, const Character& right);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bool operator<(const Slot& left, const Slot& right);
|
||||||
|
bool operator<(const Character& left, const Character& right);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue