Blame helianthus/main.c

3f9996
54ce0d
#include "helianthus.h"
3f9996
3f9996
void init() {
3f9996
}
3f9996
3f9996
void draw() {
3f9996
}
3f9996
3f9996
int main() {
3f9996
	worldSetInit(&init);
3f9996
	worldSetDraw(&draw);
3f9996
	worldRun();
3f9996
	return 0;	
3f9996
}