mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 15:15:40 +12:00
15 lines
No EOL
222 B
C++
15 lines
No EOL
222 B
C++
#pragma once
|
|
#include <array>
|
|
|
|
#include "helpers.hpp"
|
|
#include "io_file.hpp"
|
|
|
|
class AmiiboDevice {
|
|
public:
|
|
static constexpr size_t tagSize = 0x21C;
|
|
|
|
bool loaded = false;
|
|
std::array<u8, tagSize> raw;
|
|
|
|
void reset();
|
|
}; |