├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yaml └── workflows │ └── main.yml ├── .gitignore ├── AM2R Atomic.sln ├── Atomic.Gtk ├── Atomic.Gtk.csproj └── Program.cs ├── Atomic.Mac ├── Atomic.Mac.csproj ├── Info.plist ├── MacIcon.icns └── Program.cs ├── Atomic.Wpf ├── Atomic.Wpf.csproj ├── Program.cs └── icon64.ico ├── Atomic ├── Atomic.csproj ├── Language │ ├── Text.Designer.cs │ ├── Text.de.resx │ ├── Text.es.resx │ ├── Text.fr.resx │ ├── Text.it.resx │ ├── Text.ja.resx │ ├── Text.pt.resx │ ├── Text.resx │ ├── Text.ru.resx │ └── Text.zh-Hans.resx ├── ModPacker.Designer.cs ├── ModPacker.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ └── icon64.ico └── SettingsForm.cs ├── AtomicLib ├── AtomicLib.csproj ├── Config.cs ├── Core.cs ├── FieldContents.cs ├── ModCreationInfo.cs ├── OS.cs ├── XML │ ├── ModProfileXML.cs │ └── Serializer.cs └── utilities │ ├── android │ ├── LICENSE │ └── apktool.jar │ └── xdelta │ ├── LICENSE │ └── xdelta3.exe ├── AtomicLibTests ├── AtomicLibTests.csproj ├── CoreTests.cs ├── GameAndroid.apk ├── GameLin.zip ├── GameMac.zip ├── GameWin.zip └── LICENSE-AM2RServer.txt ├── CHANGELOG.md ├── LICENSE ├── README.md └── distribution └── linux ├── Atomic.appdata.xml ├── Atomic.desktop ├── Atomic.png └── screenshot.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/.gitignore -------------------------------------------------------------------------------- /AM2R Atomic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AM2R Atomic.sln -------------------------------------------------------------------------------- /Atomic.Gtk/Atomic.Gtk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Gtk/Atomic.Gtk.csproj -------------------------------------------------------------------------------- /Atomic.Gtk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Gtk/Program.cs -------------------------------------------------------------------------------- /Atomic.Mac/Atomic.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Mac/Atomic.Mac.csproj -------------------------------------------------------------------------------- /Atomic.Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Mac/Info.plist -------------------------------------------------------------------------------- /Atomic.Mac/MacIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Mac/MacIcon.icns -------------------------------------------------------------------------------- /Atomic.Mac/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Mac/Program.cs -------------------------------------------------------------------------------- /Atomic.Wpf/Atomic.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Wpf/Atomic.Wpf.csproj -------------------------------------------------------------------------------- /Atomic.Wpf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Wpf/Program.cs -------------------------------------------------------------------------------- /Atomic.Wpf/icon64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic.Wpf/icon64.ico -------------------------------------------------------------------------------- /Atomic/Atomic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Atomic.csproj -------------------------------------------------------------------------------- /Atomic/Language/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.Designer.cs -------------------------------------------------------------------------------- /Atomic/Language/Text.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.de.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.es.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.fr.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.it.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.ja.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.pt.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.ru.resx -------------------------------------------------------------------------------- /Atomic/Language/Text.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Language/Text.zh-Hans.resx -------------------------------------------------------------------------------- /Atomic/ModPacker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/ModPacker.Designer.cs -------------------------------------------------------------------------------- /Atomic/ModPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/ModPacker.cs -------------------------------------------------------------------------------- /Atomic/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Resources.Designer.cs -------------------------------------------------------------------------------- /Atomic/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Resources.resx -------------------------------------------------------------------------------- /Atomic/Resources/icon64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/Resources/icon64.ico -------------------------------------------------------------------------------- /Atomic/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/Atomic/SettingsForm.cs -------------------------------------------------------------------------------- /AtomicLib/AtomicLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/AtomicLib.csproj -------------------------------------------------------------------------------- /AtomicLib/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/Config.cs -------------------------------------------------------------------------------- /AtomicLib/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/Core.cs -------------------------------------------------------------------------------- /AtomicLib/FieldContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/FieldContents.cs -------------------------------------------------------------------------------- /AtomicLib/ModCreationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/ModCreationInfo.cs -------------------------------------------------------------------------------- /AtomicLib/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/OS.cs -------------------------------------------------------------------------------- /AtomicLib/XML/ModProfileXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/XML/ModProfileXML.cs -------------------------------------------------------------------------------- /AtomicLib/XML/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/XML/Serializer.cs -------------------------------------------------------------------------------- /AtomicLib/utilities/android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/utilities/android/LICENSE -------------------------------------------------------------------------------- /AtomicLib/utilities/android/apktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/utilities/android/apktool.jar -------------------------------------------------------------------------------- /AtomicLib/utilities/xdelta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/utilities/xdelta/LICENSE -------------------------------------------------------------------------------- /AtomicLib/utilities/xdelta/xdelta3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLib/utilities/xdelta/xdelta3.exe -------------------------------------------------------------------------------- /AtomicLibTests/AtomicLibTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/AtomicLibTests.csproj -------------------------------------------------------------------------------- /AtomicLibTests/CoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/CoreTests.cs -------------------------------------------------------------------------------- /AtomicLibTests/GameAndroid.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/GameAndroid.apk -------------------------------------------------------------------------------- /AtomicLibTests/GameLin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/GameLin.zip -------------------------------------------------------------------------------- /AtomicLibTests/GameMac.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/GameMac.zip -------------------------------------------------------------------------------- /AtomicLibTests/GameWin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/GameWin.zip -------------------------------------------------------------------------------- /AtomicLibTests/LICENSE-AM2RServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/AtomicLibTests/LICENSE-AM2RServer.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/README.md -------------------------------------------------------------------------------- /distribution/linux/Atomic.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/distribution/linux/Atomic.appdata.xml -------------------------------------------------------------------------------- /distribution/linux/Atomic.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/distribution/linux/Atomic.desktop -------------------------------------------------------------------------------- /distribution/linux/Atomic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/distribution/linux/Atomic.png -------------------------------------------------------------------------------- /distribution/linux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AM2R-Community-Developers/Atomic/HEAD/distribution/linux/screenshot.png --------------------------------------------------------------------------------