2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:51:22 +00:00
metaforce/Runtime/CMFGameBase.hpp
Lioncash 241a66dc0a General: Make use of explicit constructors where applicable
Gets rid of potential error prone implicitly constructing constructors.
2020-03-27 06:00:17 -04:00

18 lines
309 B
C++

#pragma once
#include "Runtime/CIOWin.hpp"
namespace urde {
class CMFGameBase : public CIOWin {
public:
explicit CMFGameBase(const char* name) : CIOWin(name) {}
};
class CMFGameLoaderBase : public CIOWin {
public:
explicit CMFGameLoaderBase(const char* name) : CIOWin(name) {}
};
} // namespace urde