main: Add EnsureWorldPakReady

Former-commit-id: 292dfa1eea
This commit is contained in:
2022-04-11 18:42:08 -04:00
parent 9c59ddae13
commit 61ffa2b5ab
15 changed files with 119 additions and 54 deletions

View File

@@ -7,11 +7,13 @@ namespace rstl {
template < typename L, typename R >
class pair {
public:
L first;
R second;
inline pair() {}
inline pair(const L& first, const R& second) : first(first), second(second) {}
inline pair(const pair& other) : first(other.first), second(other.second) {}
inline void operator=(const pair& other) { first = other.first; second = other.second; }
L first;
R second;
};
} // namespace rstl