| 52 | static bool exportGameState(Stream& stream, const S5File& file, const std::vector<ObjectHeader>& packedObjects); |
| 53 | |
| 54 | constexpr bool hasSaveFlags(SaveFlags flags, SaveFlags flagsToTest) |
| 55 | { |
| 56 | return (flags & flagsToTest) != SaveFlags::none; |
| 57 | } |
| 58 | |
| 59 | constexpr bool hasLoadFlags(LoadFlags flags, LoadFlags flagsToTest) |
| 60 | { |