mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
22 lines
471 B
C++
22 lines
471 B
C++
#include "glue/CGlueLoading.hpp"
|
|
#include "component/CCharacterComponent.hpp"
|
|
#include "model/Model2.hpp"
|
|
#include "util/SFile.hpp"
|
|
|
|
int32_t CGlueLoading::s_loadState;
|
|
|
|
void CGlueLoading::StartLoad(CCharacterComponent* component, int32_t a2) {
|
|
if (SFile::IsStreamingTrial()) {
|
|
// TODO
|
|
|
|
return;
|
|
}
|
|
|
|
if (component) {
|
|
component->RenderPrep(1);
|
|
component->m_data.model->IsDrawable(1, 1);
|
|
}
|
|
|
|
CGlueLoading::s_loadState = 3;
|
|
}
|