mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-21 16:05:05 +00:00
20 lines
207 B
C
20 lines
207 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct root_config {
|
|
const char* model;
|
|
};
|
|
|
|
struct root_api {
|
|
};
|
|
|
|
#define root_init nullptr
|
|
#define root_deinit nullptr
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|