mirror of
https://github.com/AxioDL/nod.git
synced 2025-08-09 21:49:23 +00:00
20 lines
234 B
C++
20 lines
234 B
C++
#ifndef __NOD_DISC_GCN__
|
|
#define __NOD_DISC_GCN__
|
|
|
|
#include "DiscBase.hpp"
|
|
|
|
namespace NOD
|
|
{
|
|
|
|
class DiscGCN : public DiscBase
|
|
{
|
|
public:
|
|
DiscGCN(std::unique_ptr<IDiscIO>&& dio);
|
|
bool commit();
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif // __NOD_DISC_GCN__
|