fire/draw.h

19 lines
256 B
C
Raw Normal View History

2019-12-13 03:27:13 +00:00
#ifndef DRAW_INCLUDED
#define DRAW_INCLUDED
2019-12-13 21:15:29 +00:00
2019-12-13 03:27:13 +00:00
#include "types.h"
typedef struct buffer
{
usize width;
usize height;
u8* buf;
} buffer;
void init ( struct buffer *buf );
void dofire ( struct buffer *buf );
2019-12-13 04:03:58 +00:00
void cleanup ( struct buffer *buf );
2019-12-13 03:27:13 +00:00
#endif