feat(glue): stub CCharacterSelection::SetFacing

This commit is contained in:
fallenoak 2025-10-11 22:56:12 -05:00
parent 1607fc9745
commit 25378bf13b
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 5 additions and 0 deletions

View File

@ -104,6 +104,10 @@ void CCharacterSelection::SetBackgroundModel(const char* modelPath) {
}
}
void CCharacterSelection::SetFacing(float facing) {
// TODO
}
void CCharacterSelection::ShowCharacter() {
// TODO
}

View File

@ -39,6 +39,7 @@ class CCharacterSelection {
static void OnGetCharacterList();
static void RenderPrep();
static void SetBackgroundModel(const char* modelPath);
static void SetFacing(float facing);
static void ShowCharacter();
static void UpdateCharacterList();
};