mirror of
https://github.com/AxioDL/nod.git
synced 2025-05-13 19:01:24 +00:00
18 lines
171 B
C++
18 lines
171 B
C++
#include "DiscGCN.hpp"
|
|
|
|
namespace NOD
|
|
{
|
|
|
|
DiscGCN::DiscGCN(std::unique_ptr<IDiscIO>&& dio)
|
|
: DiscBase(std::move(dio))
|
|
{
|
|
|
|
}
|
|
|
|
bool DiscGCN::commit()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|