mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
Add Yuzu NFC types header, clean up headers
This commit is contained in:
parent
139ea16fda
commit
679eb0f7bc
6 changed files with 428 additions and 5 deletions
|
@ -1,15 +1,17 @@
|
|||
#pragma once
|
||||
#include <array>
|
||||
|
||||
#include "helpers.hpp"
|
||||
#include "io_file.hpp"
|
||||
#include "nfc_types.hpp"
|
||||
|
||||
class AmiiboDevice {
|
||||
bool loaded = false;
|
||||
bool encrypted = false;
|
||||
|
||||
public:
|
||||
static constexpr size_t tagSize = 0x21C;
|
||||
|
||||
bool loaded = false;
|
||||
std::array<u8, tagSize> raw;
|
||||
|
||||
void loadFromRaw();
|
||||
void reset();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue