mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-26 00:10:11 +00:00
13 lines
281 B
C
13 lines
281 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
|
|
typedef struct Calibration Calibration;
|
|
|
|
Calibration* calibration_alloc(ViewDispatcher* view_dispatcher);
|
|
|
|
void calibration_free(Calibration* calibration);
|
|
|
|
View* calibration_get_view(Calibration* calibration);
|