mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 09:48:20 +00:00
21 lines
509 B
C
21 lines
509 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace BrickByBrickFix {
|
||
|
/**
|
||
|
* @brief Deletes all broken BrickByBrick models that have invalid XML
|
||
|
*
|
||
|
* @return The number of BrickByBrick models that were truncated
|
||
|
*/
|
||
|
uint32_t TruncateBrokenBrickByBrickXml();
|
||
|
|
||
|
/**
|
||
|
* @brief Updates all BrickByBrick models in the database to be
|
||
|
* in the sd0 format as opposed to a zlib compressed format.
|
||
|
*
|
||
|
* @return The number of BrickByBrick models that were updated
|
||
|
*/
|
||
|
uint32_t UpdateBrickByBrickModelsToSd0();
|
||
|
};
|