// This file is part of the 64k demo project. // Forward declarations for asset management system. // Use this header when you only need AssetId type. #pragma once #include #include enum class AssetId : uint16_t; // Forward declaration // Type for procedural generation functions: (buffer, width, height, params, // num_params) // Returns true on success, false on failure. typedef bool (*ProcGenFunc)(uint8_t*, int, int, const float*, int); struct AssetRecord; // Forward declaration (opaque)