forked from cory/tildefriends
14 lines
217 B
C
14 lines
217 B
C
#pragma once
|
|
|
|
/**
|
|
** \defgroup database_js Database Interface
|
|
** Exposes a key-value store interface to script.
|
|
** @{
|
|
*/
|
|
|
|
typedef struct JSContext JSContext;
|
|
|
|
void tf_database_register(JSContext* context);
|
|
|
|
/** @} */
|