fire/draw.h
2019-12-13 16:15:29 -05:00

19 lines
256 B
C

#ifndef DRAW_INCLUDED
#define DRAW_INCLUDED
#include "types.h"
typedef struct buffer
{
usize width;
usize height;
u8* buf;
} buffer;
void init ( struct buffer *buf );
void dofire ( struct buffer *buf );
void cleanup ( struct buffer *buf );
#endif