wabbajack/Wabbajack.Common/Ext.cs
Luca a87f8dac7f
New Features from External Contributors [Merged to Internal Test Branch so Tests can run!] (#2325)
* added enderalse GOGID

* Fix readme opening twice when loading last modlist

* Edit Wabbajack CLI button text

* Cancel running downloads when shutting down application

* Add resume support for IHttpDownloader

* Add resume support for manual downloads

* Update CHANGELOG.md

* Improve game selection to only show games with results combined with the amount of lists

* Undo accidental removal of loading settings

* Add more tooltips and improve existing ones

* Update CHANGELOG.md

* Main test external pull readme fix (#2335)

* Fix SelectedGameType crashing Wabbajack when no settings are present yet, fix readme being clickable when not specified resulting in crash

* Add readme fix to CHANGELOG, fix typo

* Add readme button fix to changelog

---------

Co-authored-by: UrbanCMC <UrbanCMC@web.de>
Co-authored-by: Angad <angadmisra28@gmail.com>
Co-authored-by: trawzified <55751269+tr4wzified@users.noreply.github.com>
Co-authored-by: Timothy Baldridge <tbaldridge@gmail.com>
2023-05-07 14:32:18 -06:00

30 lines
1.2 KiB
C#

using Wabbajack.Paths;
namespace Wabbajack.Common;
public static class Ext
{
public static Extension Meta = new(".meta");
public static Extension Pyc = new(".pyc");
public static Extension Log = new(".log");
public static Extension Esp = new(".esp");
public static Extension Esm = new(".esm");
public static Extension Bsa = new(".bsa");
public static Extension Html = new(".html");
public static Extension Bin = new(".bin");
public static Extension Mohidden = new(".mohidden");
public static Extension Zip = new(".zip");
public static Extension Wabbajack = new(".wabbajack");
public static Extension Dds = new(".dds");
public static Extension Json = new(".json");
public static Extension Md = new(".md");
public static Extension MetaData = new(".metadata");
public static Extension CompilerSettings = new(".compiler_settings");
public static Extension DownloadPackage = new(".download_package");
public static Extension Temp = new(".temp");
public static Extension ModlistMetadataExtension = new(".modlist_metadata");
public static Extension Txt = new(".txt");
public static Extension Webp = new(".webp");
public static Extension Png = new(".png");
}