mirror of
https://github.com/AxioDL/nod.git
synced 2025-08-15 16:39:06 +00:00
21 lines
445 B
C++
21 lines
445 B
C++
#ifndef __NOD_DISC_WII__
|
|
#define __NOD_DISC_WII__
|
|
|
|
#include "DiscBase.hpp"
|
|
|
|
namespace NOD
|
|
{
|
|
|
|
class DiscWii : public DiscBase
|
|
{
|
|
public:
|
|
DiscWii(std::unique_ptr<IDiscIO>&& dio);
|
|
bool packFromDirectory(const SystemChar* dataPath, const SystemChar* updatePath,
|
|
const SystemChar* outPath, const char gameID[6], const char* gameTitle,
|
|
bool korean=false);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __NOD_DISC_WII__
|