42_KFS/headers/icon.h

11 lines
110 B
C
Raw Normal View History

2024-12-10 10:26:00 -05:00
#pragma once
#include "types.h"
2024-12-10 10:26:00 -05:00
#include <stdint.h>
struct icon {
u32 height;
u32 width;
u32 *pixels;
2024-12-10 10:26:00 -05:00
};