/
xverizex
/
c_game_engine
Обзор
Документация
Войти
/
xverizex
/
c_game_engine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/engine/include/resource.h
15 строк
259 B
Dmitry
Add engine
08 авг 2025, 04:00
08 авг 2025, 04:00
ce7ab0d
Код
Авторство
О чём код?
#ifndef RESOURCE_H #define RESOURCE_H #include <stdint.h> struct resource { uint32_t type_res; uint32_t res; uint8_t *compressed_data; uint64_t compressed_size; uint8_t *uncompressed_data; uint64_t uncompressed_size; int32_t assigned_indx; }; #endif