gitextract_oo1ijy8f/ ├── .claude/ │ └── skills/ │ ├── add-localization/ │ │ └── SKILL.md │ └── create-pr/ │ └── SKILL.md ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── feature_request.yml │ ├── how_to_release.md │ └── pull_request_template.md ├── .gitignore ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RunCat365/ │ ├── App.config │ ├── App.manifest │ ├── BalloonTipType.cs │ ├── BitmapExtension.cs │ ├── ByteFormatter.cs │ ├── CPURepository.cs │ ├── Cat.cs │ ├── ContextMenuManager.cs │ ├── ContextMenuRenderer.cs │ ├── CustomToolStripMenuItem.cs │ ├── EndlessGameForm.cs │ ├── EndlessGameForm.resx │ ├── FPSMaxLimit.cs │ ├── GPURepository.cs │ ├── GameStatus.cs │ ├── LaunchAtStartupManager.cs │ ├── MemoryRepository.cs │ ├── NetworkRepository.cs │ ├── Program.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Strings.Designer.cs │ │ ├── Strings.de.resx │ │ ├── Strings.es.resx │ │ ├── Strings.fr.resx │ │ ├── Strings.ja.resx │ │ ├── Strings.resx │ │ ├── Strings.zh-CN.resx │ │ ├── Strings.zh-TW.resx │ │ ├── UserSettings.Designer.cs │ │ └── UserSettings.settings │ ├── Road.cs │ ├── RunCat365.csproj │ ├── Runner.cs │ ├── SpeedSource.cs │ ├── StorageRepository.cs │ ├── SupportedLanguage.cs │ ├── Theme.cs │ └── TreeFormatter.cs ├── RunCat365.sln ├── WapForStore/ │ ├── AppPackages/ │ │ └── rm-wap-for-store.sh │ ├── Package.StoreAssociation.xml │ ├── Package.appxmanifest │ └── WapForStore.wapproj └── docs/ ├── index.html ├── privacy_policy.html └── style.css