feat(ui): implement script methods for character creation screen

This commit is contained in:
VDm 2025-05-18 14:58:01 +04:00
parent 77cb9ed966
commit b4ff9994e2
11 changed files with 90 additions and 23 deletions

View file

@ -307,3 +307,8 @@ int32_t SFile::RebuildHash() {
// TODO
return 1;
}
int32_t SFile::IsTrial() {
// TODO
return 0;
}

View file

@ -41,6 +41,7 @@ class SFile {
static int32_t GetDataPath(char* path, size_t capacity);
static int32_t SetDataPathAlternate(const char* path);
static int32_t RebuildHash();
static int32_t IsTrial();
// Member variables
SFILE_TYPE m_type;