15 lines
218 B
C
15 lines
218 B
C
#ifndef NUKE_H
|
|
#define NUKE_H
|
|
|
|
#include "nuklear.h"
|
|
#include "nuklear_glfw_gl3.h"
|
|
|
|
extern struct nk_context *ctx;
|
|
|
|
struct mSDLWindow;
|
|
|
|
void nuke_init(struct mSDLWindow *win);
|
|
void nuke_start();
|
|
void nuke_end();
|
|
|
|
#endif |