mirror of
https://github.com/AxioDL/nod.git
synced 2025-07-04 04:06:09 +00:00
17 lines
235 B
C++
17 lines
235 B
C++
#ifndef __NOD_LIB__
|
|
#define __NOD_LIB__
|
|
|
|
#include <memory>
|
|
#include "DiscGCN.hpp"
|
|
#include "DiscWii.hpp"
|
|
#include "IDiscIO.hpp"
|
|
|
|
namespace NOD
|
|
{
|
|
|
|
std::unique_ptr<DiscBase> OpenDiscFromImage(const char* path);
|
|
|
|
}
|
|
|
|
#endif // __NOD_LIB__
|