(svn r23207) -Codechange: make functions private/protected/public depending on their current usage (and reorder functions a bit)

This commit is contained in:
truebrain
2011-11-13 20:41:17 +00:00
parent 049bea1e8a
commit 70b6b3cc2c
2 changed files with 29 additions and 28 deletions

View File

@@ -154,12 +154,6 @@ public:
*/
void Load(int version);
/**
* Call the AI Load function if it exists and data was loaded
* from a savegame.
*/
bool CallLoad();
/**
* Load and discard data from a savegame.
*/
@@ -206,6 +200,12 @@ private:
*/
void Died();
/**
* Call the AI Load function if it exists and data was loaded
* from a savegame.
*/
bool CallLoad();
/**
* Save one object (int / string / array / table) to the savegame.
* @param vm The virtual machine to get all the data from.