2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 03:39:11 +00:00

Implement CAutoSave

This commit is contained in:
2020-09-12 18:13:38 -07:00
parent 93e85e64f6
commit b68af83fb3
5 changed files with 130 additions and 65 deletions

View File

@@ -1,6 +1,6 @@
#pragma once
#include "CIOWin.hpp"
#include "Runtime/CIOWin.hpp"
namespace urde::MP1 {
class CSaveGameScreen;
@@ -9,5 +9,9 @@ class CAutoSave : CIOWin {
public:
CAutoSave();
void Draw() override;
bool GetIsContinueDraw() const override { return false; }
EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue) override;
};
} // namespace urde::MP1