42_KFS/headers/icon.h

10 lines
106 B
C

#pragma once
#include <stdint.h>
struct icon {
uint32_t height;
uint32_t width;
uint32_t *pixels;
};