Codechange: Unify naming of squirrel built-in types in Script API docs

This commit is contained in:
frosch
2024-03-24 19:02:16 +01:00
committed by Peter Nelson
parent e436e2ef40
commit dfa2622153
6 changed files with 21 additions and 11 deletions

View File

@@ -92,7 +92,7 @@ public:
*
* @return Data of the script that should be stored in the save game.
*/
SquirrelTable Save();
table Save();
/**
* Load saved data just before calling #Start.
@@ -100,7 +100,7 @@ public:
* @param version Version number of the script that created the \a data.
* @param data Data that was saved (return value of #Save).
*/
void Load(int version, SquirrelTable data);
void Load(int version, table data);
#endif /* DOXYGEN_API */
/**