11 lines
134 B
C
11 lines
134 B
C
|
|
// Begin API
|
|
|
|
typedef struct context {
|
|
float brush_radius;
|
|
} context_t;
|
|
|
|
context_t *script_get_context(); // never NULL
|
|
|
|
// End API
|