17 lines
344 B
C
17 lines
344 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "dusk.h"
|
|
|
|
#define ASSET_PALETTE_IMAGE_SIZE_MAX (256*256)
|
|
|
|
typedef struct {
|
|
uint32_t width;
|
|
uint32_t height;
|
|
uint8_t data[ASSET_PALETTE_IMAGE_SIZE_MAX];
|
|
} assetpaletteimage_t; |