feat(01-bmpmafia): deepfryer

This commit is contained in:
2025-02-06 11:20:31 +03:00
parent aac3bb56c8
commit e110d9afe2
6 changed files with 174 additions and 1 deletions

View File

@ -25,7 +25,15 @@ namespace bmp {
uint32_t colorsUsed;
uint32_t colorsImportant;
};
struct BMPColorHeader {
uint32_t red;
uint32_t green;
uint32_t blue;
uint32_t alpha;
uint32_t colorSpaceType;
uint32_t unused[16];
};
}
#pragma pack(pop)
#endif