User Folder
In this section we will explain how the folders that store the information of all the users work.
Path where all users are stored in the Ramila Launcher folder: Ramila Launcher/Saves
Ramila Launcher ├── Games │ └── ... └── Saves ├── 0_User1 │ ├── user.data │ ├── profile.icon │ └── Games │ │── game1 │ │ │── gameFile.sav │ │ └── gameFile2.sav │ └── game2 │ └──... └── 1_User2 └──...
The name of the folder is the player's initial user name (this name is not changed when changing the profile name). And it has a number at the beginning representing the order of appearance in Ramila Launcher, so that it does not self-organize in alphabetical order.
Inside the folder there are 2 files
- profile.icon - The user's icon in base64 (this file only appears if the user put an icon)
- user.data - All the basic information about the user (representing the User class)
Then in the Games folder is on the games are saved (as long as it is saved with the DataManager system), the games are organized in folders, each folder is a game, calling the folder with the id of that game to then have the files that the game needs, there is no real limit of files, apart from the computer.