/* * SSEQ Player - SDAT structure * By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com] * Last modification on 2014-09-08 * * Nintendo DS Nitro Composer (SDAT) Specification document found at * http://www.feshrine.net/hacking/doc/nds-sdat.html */ #pragma once #include #include #include #include #include struct SDAT { std::unique_ptr sseq; std::unique_ptr sbnk; std::unique_ptr swar[4]; SDAT(PseudoFile &file, uint32_t sseqToLoad); private: SDAT(const SDAT &); SDAT &operator=(const SDAT &); };