mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-30 00:32:06 +03:00
14 lines
254 B
C
14 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[];
|