This commit is contained in:
2025-11-07 19:19:17 -06:00
parent 1ce1fdff8d
commit 12c1fb6000
11 changed files with 149 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "dusk.h"
#define LANG_CHUNK_STRING_COUNT 64
#define LANG_CHUNK_STRING_MAX_LENGTH DUSK_LANG_STRING_MAX_LENGTH
#pragma pack(push, 1)
typedef struct {
char_t
} languagechunk_t;
#pragma pack(pop)