mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-06-25 06:09:51 +00:00

Tested that models are migrated to the new format a-ok Tested that the new logic works as expected. Old code needs to be kept so that models in both states can be brought to modern standards
13 lines
226 B
C++
13 lines
226 B
C++
// Darkflame Universe
|
|
// Copyright 2025
|
|
|
|
#ifndef MODELNORMALIZEMIGRATION_H
|
|
#define MODELNORMALIZEMIGRATION_H
|
|
|
|
namespace ModelNormalizeMigration {
|
|
void Run();
|
|
void RunAfterFirstPart();
|
|
};
|
|
|
|
#endif //!MODELNORMALIZEMIGRATION_H
|