mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07: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[];
|