La simu multi-agents qui repeint une image, mais en c++ Boilerplate pompé ici : https://github.com/andrew-r-king/sfml-vscode-boilerplate
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
  3. <assemblyIdentity
  4. name="SFML Boilerplate"
  5. processorArchitecture="ia64"
  6. version="1.0.0.0"
  7. type="win32" />
  8. <description>My SFML Game</description>
  9. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
  10. <security>
  11. <requestedPrivileges>
  12. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  13. </requestedPrivileges>
  14. </security>
  15. </trustInfo>
  16. <application xmlns="urn:schemas-microsoft-com:asm.v3">
  17. <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2011/WindowsSettings">
  18. <disableWindowFiltering>true</disableWindowFiltering>
  19. </windowsSettings>
  20. <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
  21. <dpiAwareness>permonitorv2, permonitor, unaware</dpiAwareness>
  22. <longPathAware>true</longPathAware>
  23. </windowsSettings>
  24. <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2017/WindowsSettings">
  25. <gdiScaling>false</gdiScaling>
  26. </windowsSettings>
  27. <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">
  28. <heapType>SegmentHeap</heapType>
  29. </windowsSettings>
  30. </application>
  31. <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  32. <application>
  33. <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" /> <!-- Windows Vista/Server 2008 -->
  34. <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" /> <!-- Windows 7/Server 2008 R2 -->
  35. <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" /> <!-- Windows 8/Server 2012 -->
  36. <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" /> <!-- Windows 8.1/Server 2012 R2 -->
  37. <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" /> <!-- Windows 10 -->
  38. </application>
  39. </compatibility>
  40. </assembly>