PShell_GetNumCostumePSXs

This commit is contained in:
krystalgamer 2024-05-23 18:40:42 +02:00
parent def6050e6b
commit 86a39d6f85
2 changed files with 14 additions and 1 deletions

View File

@ -7,3 +7,9 @@ int GameFMV_GetNumMovies(void)
{
return 27;
}
// @Ok
int PShell_GetNumCostumePSXs(void)
{
return 10;
}

View File

@ -1,5 +1,8 @@
#pragma once
#ifndef PSHELL_H
#define PSHELL_H
#include "export.h"
#include "ob.h"
@ -25,4 +28,8 @@ public:
EXPORT int Display();
EXPORT int ScrollBarHitTest(int a2, int a3);
};
};
EXPORT int PShell_GetNumCostumePSXs(void);
#endif