mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
13 lines
254 B
C
13 lines
254 B
C
#pragma once
|
|
|
|
#include "../nfc_i.h"
|
|
|
|
typedef void (*NfcGeneratorFunc)(NfcDeviceData* data);
|
|
|
|
struct NfcGenerator {
|
|
const char* name;
|
|
NfcGeneratorFunc generator_func;
|
|
NfcScene next_scene;
|
|
};
|
|
|
|
extern const NfcGenerator* const nfc_generators[];
|