mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-23 12:31:15 +00:00
15 lines
275 B
C
15 lines
275 B
C
#ifndef G_UTILS_H_
|
|
#define G_UTILS_H_
|
|
|
|
#include "g_local.h"
|
|
|
|
/**
|
|
* \brief Get the model index for a model.
|
|
* Get the model index for a model.
|
|
*
|
|
* \param name the model name
|
|
* \return the models index
|
|
*/
|
|
int32_t G_ModelIndex(char* name);
|
|
|
|
#endif /* G_UTILS_H_ */
|