Roughly planning asset locking

This commit is contained in:
2025-09-01 22:07:36 -05:00
parent 14c41d33a7
commit f915a4208b
3 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* 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;