✨ feat(plugin manager): integrated plugin manager, build success
This commit is contained in:
5
deps/bitmap/bitmap.h
vendored
Normal file
5
deps/bitmap/bitmap.h
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
struct bitmap;
|
||||
struct bitmap * bitmap_new(int width, int height, int value);
|
||||
int bitmap_set(struct bitmap *bmp, int x, int y, int value);
|
||||
int bitmap_get(struct bitmap *bmp, int x, int y);
|
||||
void bitmap_free(struct bitmap *bmp);
|
||||
Reference in New Issue
Block a user