12 lines
218 B
C
12 lines
218 B
C
#pragma once
|
|
#include "opengl.h"
|
|
|
|
/* Try to find nebulae to load, or generate if there isn't any. */
|
|
void nebu_init(void);
|
|
|
|
void nebu_exit(void);
|
|
|
|
void nebu_render(void);
|
|
void nebu_generate(const int w, const int h);
|
|
|