mirror of https://github.com/AxioDL/nod.git
18 lines
199 B
C++
18 lines
199 B
C++
|
#ifndef __NOD_DISC_WII__
|
||
|
#define __NOD_DISC_WII__
|
||
|
|
||
|
#include "DiscBase.hpp"
|
||
|
|
||
|
namespace NOD
|
||
|
{
|
||
|
|
||
|
class DiscWii : public DiscBase
|
||
|
{
|
||
|
public:
|
||
|
DiscWii(IDiscIO& discio);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __NOD_DISC_WII__
|