All public logs

Combined display of all available logs of C# Gamedev Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:23, 9 June 2024 Winkio talk contribs created page Local Directories (Created page with "To get to specific local directories on the system where a game is running <syntaxhighlight lang="cs"> Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) </syntaxhighlight> This works on multiple platforms, including windows, linux, mac, and android. For example, if you wanted to create a folder under ‘My Games’ for a single game's save data, consider the following code: <syntaxhighlight lang="cs"> string gameName = "Tetris"; string userDirectory =...")