mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
17 lines
No EOL
292 B
C++
17 lines
No EOL
292 B
C++
#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;
|
|
std::array<u8, tagSize> raw;
|
|
|
|
void loadFromRaw();
|
|
void reset();
|
|
}; |