core: remove bozo typedef for types

This commit is contained in:
2025-02-07 12:35:32 +01:00
parent 70739744ac
commit 3b798e5daa
55 changed files with 59841 additions and 1789 deletions

View File

@ -1,10 +1,9 @@
#pragma once
#include "types.h"
#include <stdint.h>
struct icon {
u32 height;
u32 width;
u32 *pixels;
uint32_t height;
uint32_t width;
uint32_t *pixels;
};