18 lines
334 B
C
18 lines
334 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "asset.h"
|
|
|
|
void assetParsePalette() {
|
|
textureInit(
|
|
&ASSET.loaded.palette,
|
|
ASSET.data.palette.colorCount,
|
|
1,
|
|
TEXTURE_FORMAT_RGBA,
|
|
ASSET.data.palette.colors
|
|
);
|
|
} |