2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 17:07:41 +00:00

Fix CAutoMapper surfaces on Braswell

This commit is contained in:
2017-11-20 09:33:21 -08:00
parent f1b43c4805
commit 2ec2d07bdf
16 changed files with 185 additions and 29 deletions

19
Runtime/MP1/CAutoSave.hpp Normal file
View File

@@ -0,0 +1,19 @@
#ifndef __URDE_CAUTOSAVE_HPP__
#define __URDE_CAUTOSAVE_HPP__
#include "CIOWin.hpp"
namespace urde
{
namespace MP1
{
class CSaveGameScreen;
class CAutoSave : CIOWin
{
std::unique_ptr<CSaveGameScreen> x14_savegameScreen;
public:
CAutoSave();
};
}
}
#endif // __URDE_CAUTOSAVE_HPP__