11 lines
110 B
C
11 lines
110 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
#include <stdint.h>
|
|
|
|
struct icon {
|
|
u32 height;
|
|
u32 width;
|
|
u32 *pixels;
|
|
};
|