La simu multi-agents qui repeint une image, mais en c++ Boilerplate pompé ici : https://github.com/andrew-r-king/sfml-vscode-boilerplate
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.json 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "C_Cpp.autocomplete": "Default",
  3. "C_Cpp.intelliSenseEngine": "Default",
  4. "C_Cpp.preferredPathSeparator": "Forward Slash",
  5. "C_Cpp.workspaceParsingPriority": "highest",
  6. "C_Cpp.enhancedColorization": "Disabled",
  7. "debug.toolBarLocation": "docked",
  8. "editor.tabSize": 4,
  9. "editor.insertSpaces": false,
  10. "editor.formatOnSave": true,
  11. "files.encoding": "utf8",
  12. "files.trimTrailingWhitespace": true,
  13. "files.eol": "\n",
  14. "files.exclude": {
  15. // "Makefile": true,
  16. // "build.sh": true,
  17. "gmon.out": true,
  18. // "bin/": true,
  19. // "build/": true,
  20. "**/*.7z": true,
  21. "**/*.rar": true,
  22. "**/Thumbs.db": true
  23. },
  24. "files.associations": {
  25. "*.json": "jsonc",
  26. "*.stats": "cpp",
  27. "*.desktop": "properties",
  28. ".clang-format": "yaml",
  29. "array": "cpp",
  30. "atomic": "cpp",
  31. "*.tcc": "cpp",
  32. "bitset": "cpp",
  33. "cctype": "cpp",
  34. "chrono": "cpp",
  35. "clocale": "cpp",
  36. "cmath": "cpp",
  37. "codecvt": "cpp",
  38. "condition_variable": "cpp",
  39. "cstdarg": "cpp",
  40. "cstddef": "cpp",
  41. "cstdint": "cpp",
  42. "cstdio": "cpp",
  43. "cstdlib": "cpp",
  44. "cstring": "cpp",
  45. "ctime": "cpp",
  46. "cwchar": "cpp",
  47. "cwctype": "cpp",
  48. "deque": "cpp",
  49. "list": "cpp",
  50. "unordered_map": "cpp",
  51. "vector": "cpp",
  52. "exception": "cpp",
  53. "algorithm": "cpp",
  54. "filesystem": "cpp",
  55. "functional": "cpp",
  56. "iterator": "cpp",
  57. "map": "cpp",
  58. "memory": "cpp",
  59. "memory_resource": "cpp",
  60. "numeric": "cpp",
  61. "optional": "cpp",
  62. "random": "cpp",
  63. "ratio": "cpp",
  64. "regex": "cpp",
  65. "set": "cpp",
  66. "string": "cpp",
  67. "string_view": "cpp",
  68. "system_error": "cpp",
  69. "tuple": "cpp",
  70. "type_traits": "cpp",
  71. "utility": "cpp",
  72. "fstream": "cpp",
  73. "future": "cpp",
  74. "initializer_list": "cpp",
  75. "iomanip": "cpp",
  76. "iosfwd": "cpp",
  77. "iostream": "cpp",
  78. "istream": "cpp",
  79. "limits": "cpp",
  80. "mutex": "cpp",
  81. "new": "cpp",
  82. "ostream": "cpp",
  83. "sstream": "cpp",
  84. "stdexcept": "cpp",
  85. "streambuf": "cpp",
  86. "thread": "cpp",
  87. "typeinfo": "cpp",
  88. "variant": "cpp"
  89. },
  90. "terminal.integrated.shell.windows": "C:/Program Files/Git/bin/bash.exe",
  91. "terminal.integrated.env.windows": {
  92. "Path": "C:/mingw32/bin;C:/SFML-2.5.1/bin"
  93. },
  94. "terminal.integrated.env.linux": {
  95. "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
  96. },
  97. "terminal.integrated.env.osx": {
  98. "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
  99. },
  100. "workbench.colorCustomizations": {
  101. "statusBar.background": "#8ac242",
  102. "statusBar.foreground": "#ffffff",
  103. "statusBar.debuggingBackground": "#5e9517",
  104. "statusBar.debuggingForeground": "#ffffff",
  105. },
  106. "[applescript]": {
  107. "files.encoding": "utf8"
  108. }
  109. }