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[];
|