mirror of
https://github.com/AxioDL/nod.git
synced 2025-07-06 21:26:08 +00:00
19 lines
200 B
C++
19 lines
200 B
C++
#ifndef __NOD_DISC_GCN__
|
|
#define __NOD_DISC_GCN__
|
|
|
|
#include "DiscBase.hpp"
|
|
|
|
namespace NOD
|
|
{
|
|
|
|
class DiscGCN : public DiscBase
|
|
{
|
|
public:
|
|
DiscGCN(IDiscIO& discio);
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif // __NOD_DISC_GCN__
|