mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-15 20:46:38 +00:00
17 lines
218 B
C
17 lines
218 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 );
|
||
|
|
||
|
#endif
|